Jump to content

iCORE

Members
  • Content Count

    393
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by iCORE

  1. help me how to fix this sql error
  2. why is the My Account info is not functioning ?
  3. can someone here can teach me on how to setup fluxcp? no link guides i need is a actual tutorial :'(
  4. these will help you to. http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC
  5. kamusta po mga kuya matapos ko pong matapos or ma explore ng buobuo ung nagawa ko gusto ko naman po manghingi ng feedback sainyo kung ok ba mahirap ba or balance ang nagawa ko sana may mga taong meron gusto sumubok comment nalang dito or message niyo ko if interesado kayo salamat
  6. hinidi po sa tingin ko pwede naman kasi mysql rin naman ung sa rAmod diba? so i transfer mo lang siya sa workbench mo tapos gamitin mo ung latest trunk ng hercules tama nalang kung mali
  7. karagdagan nalang ganito yan kung mag eedit ka ng commands s groups.conf and ung mga permission makikita mo sa trunk/doc/permission.txt then gawin mo lang true if gusto mo enable then sa mga future commands like @commands punta ka sa trunk/conf/help.txt makikita mo lahat ng command dun same as permission lang sulat mo ung command: true
  8. all ready fix the rest of the wav but still first blood is not triggering
  9. hi guys can you help me to put the Ghost PvP Ladder? im sure you all know that script hmm i successfully added the npc but the problem is the announcer it was not triggering after i kill someone. can you help me?
  10. iCORE

    :) Hi

    thanks guys and....... i will
  11. trunk/npc/custom then edit/add the script at script_costoms on trunk/npc
  12. this would be a great idea to those who are TLDR instructions
  13. iCORE

    :) Hi

    hello im happy to be back after a long month vacation and i will be active again hehe just telling LOL! well see you around guys!
  14. iCORE

    [HELP]

    can you guys make this work on hercules emulator prontera,148,194,4 script Reset Girl 124,{ set .@zenyabove,500000; //The cost of a reset after reaching the .@blvl settedset .@zenybelow,0; //The cost of a reset before reaching the .@blvl settedset .@blvl,80; //The max base lvl to have a low cost resetset .@resets,1; //Amount of resets available after reaching .@blvl, if you set this to 0, you will have infinite resetsset .@itemid,26002; //The item id you want to make users use when they run out of resets, mine is 26002, if you set this to 0, they will not be able to reset again mes "[Reset Girl]"; mes "I am the Reset Girl, "+(getd(".@zenybelow")>0?"the ^0000FFresetting cost you^000000 ^FF0000"+.@zenybelow+"^000000 zenies.":"the ^0000FFresetting is Free^000000.")+""; mes "After reaching ^0000FFBase lvl "+.@blvl+"^000000 you are able to use my services ^FF0000"+.@resets+" last time"+(getd(".@resets")>1?"s":"")+"^000000 for ^0000FF"+.@zenyabove+" zenies^000000"+(getd(".@itemid")>1?", otherwise you will have to get a ^FF0000"+getitemname(.@itemid)+"^000000.":".")+""; switch(select("Reset Stats","Reset Skills","Reset Both")){ case 1: set .@resetstatus,1; next; goto L_Reset; case 2: set .@resetskills,1; next; goto L_Reset; case 3: set .@resetboth,1; next; goto L_Reset; }close; L_Reset: if( BaseLevel < .@blvl ){ if ( Zeny >= .@zenybelow ){ mes "[Reset Girl]"; if ( .@resetstatus == 1 ) mes "Are you sure you want to ^FF0000Reset Status^000000?"; if ( .@resetskills == 1 ) mes "Are you sure you want to ^FF0000Reset Skills^000000?"; if ( .@resetboth == 1 ) mes "Are you sure you want to ^FF0000Reset Status & Skills^000000?"; if ( .@zenybelow > 0 ) mes "It will cost you ^0000FF"+.@zenybelow+"^000000 zenies."; if (select("Yes:No")==1){ mes "Here you go!"; if ( .@resetstatus == 1 ) ResetStatus; if ( .@resetskills == 1 ) ResetSkill; if ( .@resetboth == 1 ) { ResetStatus; ResetSkill; } set zeny,zeny-.@zenybelow; next; mes "[Reset Girl]"; mes "Thank you for using my services!"; } else mes "Come back when you are ready!"; } else mes "You don't have enough money!"; } else{ if( RESETTED >= .@resets ) { if ( .@itemid == 0 ){ mes "Sorry, you cannot use my services anymore."; close; } else { mes "It seems that you have used all your zeny resets."; mes "I will need a ^FF0000"+getitemname(.@itemid)+"^000000!"; next; if( countitem(.@itemid) >= 1 ){ if ( .@resetstatus == 1 ) mes "You are about to ^FF0000Reset Stats^000000 using 1 ^FF0000"+getitemname(.@itemid)+"^000000!";; if ( .@resetskills == 1 ) mes "You are about to ^FF0000Reset Skills^000000 using 1 ^FF0000"+getitemname(.@itemid)+"^000000!";; if ( .@resetboth == 1 ) mes "You are about to ^FF0000Reset Stats & Skills^000000 using 1 ^FF0000"+getitemname(.@itemid)+"^000000!"; mes "^FF0000Are you really sure?^000000"; if (select("Yes:No")==1){ mes "Here you go!"; delitem .@itemid,1; if ( .@resetstatus == 1 ) ResetStatus; if ( .@resetskills == 1 ) ResetSkill; if ( .@resetboth == 1 ) { ResetStatus; ResetSkill; } next; mes "[Reset Girl]"; mes "Thank you for using my services!"; close; } else{ mes "Come back when you are ready!"; } } else{ mes "You do not have any ^FF0000"+getitemname(.@itemid)+"^000000!"; mes "Come back when you get one."; mes "Have a Good day!"; } } } else{ if( Zeny >= .@zenyabove ){ mes "[Reset Girl]"; mes "You are over Level "+.@blvl+"!!"; mes "^FF0000You only have "+(.@resets-RESETTED)+" Resets left!^000000."; next; if ( .@resetstatus == 1 ) mes "Are you sure you want to ^FF0000Reset Status^000000?"; if ( .@resetskills == 1 ) mes "Are you sure you want to ^FF0000Reset Skills^000000?"; if ( .@resetboth == 1 ) mes "Are you sure you want to ^FF0000Reset Status & Skills^000000?"; if ( .@zenyabove > 0 ) mes "It will cost you ^0000FF"+.@zenyabove+"^000000 zenies."; if (select("Yes:No")==1){ mes "Here you go!"; set zeny,zeny-.@zenyabove; if ( .@resetstatus == 1 ) ResetStatus; if ( .@resetskills == 1 ) ResetSkill; if ( .@resetboth == 1 ) { ResetStatus; ResetSkill; } if ( .@resets != 0 ) set RESETTED,RESETTED + 1; next; mes "[Reset Girl]"; mes "Thank you for using my services!"; } else{ mes "Come back when you are ready!"; } } else{ mes "Sorry you don't have enough money to use my services."; mes "You need ^0000FF"+.@zenyabove+"^000000 zenies for it."; } } }close;} its a script by ekoh and its not working on hercules emu please help thankyou
  15. http://ro.doddlercon.com/wiki/index.php?title=Renewal_Changes#Element_Table hope this will help!
  16. iCORE

    [HELP]

    OnTouch: npctalk strcharinfo(0) "Message Here" End; wala po kasi ako sa bahay eh pero pwede nyopo ba i try kung gagana yan.
  17. iCORE

    [HELP]

    ano po ba ung pwedeng alternative sa mapannounce po para hindi po broadcast ung message and ung npc po ung mag sasalita kung sino ung pumunta sa lugar na naka set sa scirpt
  18. iCORE

    [NPC]

    hi po ulit mga sir may ginagawa po akong npc na automatic po siyang mag sasalita tapos sasabihin ung pangalan nung player na lumapit sa npc pano po ba dadag dagan to npctalk "(name) walked near me!"; na try ko na po ung +getcharid(0)+ and +strtcharinfo(0)+ pero ayaw tlga
  19. galing pa naman akong nag eden quest sa geffen filed 10 /sob
  20. grabe naman hahaha laro nalang tyo baka mamaya sa test server kopa mapunta si TL hahaha check nyo sa gef_fild bka nandun pa siya hahaha
  21. iCORE

    pa tulong po

    try moto npccustomeventsuneasy_cemetery.txt try mo po yan mukang kamuka lang po ng gusto mo
  22. iCORE

    Urgent po patulong

    restore mo nalang ung map.c and pc.c mo mas madali un
  23. i think you can't use no-ip or any 3rdparty IP i suggest you to buy a host if you are planning to public your server allways use 127.0.0.1 IP if you are only testing the server
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.