Jump to content

Viray420

Members
  • Content Count

    22
  • Joined

  • Last visited

Everything posted by Viray420

  1. Hi Dastgir,

    I'm hoping you're having a great day.

    Is there a possibility that the special shop patch may compatible to 3ceam emulator?

    best regards,

  2. Hi! Is the version 1.0, is this 3ceam compatible? Thank you!
  3. can u guys update the AFK plugin? i'm using the latest hercules emulator
  4. please update. im using latest hercules
  5. i got this error when make plugin. please help
  6. Hello guys. anyone who can help me to remove this.
  7. if( !checkbound(.@i) ){ mes "I can't refine bounded items."; close;} i got this error in my cmd. ( script_checkbound: Invalid ID = 1 ) i use FAKE_NPC. other script works like this [ if(!getequipisenableref(.@i)) {} ] is it possible to change (!checkbound) to (!getequipcheckbound). i try to add it with card remover npc but still it doesn't work.
  8. please update this to newer version.
  9. When the item is already +10. automatic fail,. where can i add this if(getequiprefinerycnt(.@refine) >= 10) close; no restriction lol. please update this
  10. not working on the latest client..
  11. Miss Annie. can u update this plugin? thank you
  12. I already edit the malloc.h to memmgr.h, im using plugin in windows and i got this error. Im using the latest Hercules-Master It works now. i just use the latest plugin script. awesome work Mr. Dev! Another Thing. i already plug all warp hit delay but it doesnt work. may i ask if this is the right config to battle.conf? // Disable warp/go when hit warp_delay: Seconds*3000 warp_delay_mob: Seconds*3000 warp_delay_pet: Seconds*3000 warp_delay_homun: Seconds*3000 warp_delay_merc: Seconds*3000 warp_delay_others: Seconds*3000
  13. Viray420

    Max Damage Cap

    Not working its working now:).
  14. I already did it but still it doesn't work. from 5471+ ID ican create it but the noble hat says [ Item Failed ] i did not change anything in item db Even 18500+ Ids are failed but some of them are successful
  15. Good day. can you help me how to enable items in Item_DB? im new to hercules thank you for your support
  16. It didn't work sir. it just keep staying in one cell when casting asura. can u make it move to 1cell but it will slide or walk? like the old one in eathena. this is the script from ea. [skill.c] if you can revised it and work in hercules svn. thank you so much for your reply. if(unit_walktoxy(src, dx, dy, 2) && ud) { //Increase can't walk delay to not alter your walk path ud->canmove_tick = tick; speed = status_get_speed(src); for (i = 0; i < ud->walkpath.path_len; i ++) { if(ud->walkpath.path&1) ud->canmove_tick+=7*speed/5; else ud->canmove_tick+=speed; }
  17. can u possibly edit this to hercules.? it made a difference between herc and eathena. in hercules after asura it will teleport on [/url]its path. can u make it after asura it will only walk on the other cell just like eathena?
  18. i think this might be the answer. when casting asura it depends on your speed walk which is walk delay after asura. in hercules after asura will teleport on 1cell(nowalkpath).if someone can apply this scr on hercules it think it will resolved the issue. i also have same problem on this. im working on skill.c asura afterwalkdelay. eathena - if(unit_walktoxy(src, dx, dy, 2) && ud) { //Increase can't walk delay to not alter your walk path ud->canmove_tick = tick; speed = status_get_speed(src); for (i = 0; i < ud->walkpath.path_len; i ++) { if(ud->walkpath.path&1) ud->canmove_tick+=7*speed/5; else ud->canmove_tick+=speed; } } } break; hercules : if (!(unit->movepos(src, mbl->x+x, mbl->y+y, 1, 1))) { // The cell is not reachable (wall, object, ...), move next to the target if (x > 0) x = -1; else if (x < 0) x = 1; if (y > 0) y = -1; else if (y < 0) y = 1; unit->movepos(src, bl->x+x, bl->y+y, 1, 1); } clif->slide(src, src->x, src->y); clif->fixpos(src); clif->spiritball(src); } } break; Hercules developers. please kinda update this issue, some of us wants pre-renewal asura walk. mostly on mid-highrate servers. they want fast asura lol . more power
×
×
  • Create New...

Important Information

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