Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. you can try convert the source mod to Hercules https://github.com/rathena/rathena/commit/01c30bf
  2. just update your client / server / kro.
  3. getmonsterinfo with MOB_MVPEXP only work in rAthena or latest emulator but not eA. you can try this http://upaste.me/r/10fae3
  4. you can try this http://upaste.me/r/996569 data that stored in sql something it need more time to update it. it's better to check it in game and not from the database itself.
  5. INSERT INTO ........ ON DUPLICATE UPDATE `xyz` = `xyz + 1; it should be something like this...
  6. then....what you actually want ?? add credit into the database ?? or insert credit into the database ?? or both ??
  7. you can try this - script Sample#autocart -1,{ OnPCLoadMapEvent: if( strcharinfo(3) == .map$ && !checkcart() && getskilllv( "MC_PUSHCART" ) ) setcart; end; OnInit: .map$ = "prt_are01"; setmapflag( .map$,mf_loadevent ); end; }
  8. my script trigger every 6 hour ....12AM 6AM 12PM 6PM sleep ( 120 * 60000 ); // 120 * 60 second = 120 minute = 2 hours. if want 1 hour duration..just change to sleep ( 60 * 60000 );
  9. why would you re-create these command when all these commands already exist in current rAthena revision since the begining. except the @iprecall.
  10. i believe this is still working for 2012 client http://www.youtube.com/watch?v=CtDRZki3Hpo
  11. you can write like this - script Sample#auto_pvp -1,{ OnClock0600: OnClock1200: OnClock1800: OnClock0000: pvpon "prontera"; announce "PVP ON",bc_all; sleep ( 120 * 60000 ); pvpoff "prontera"; announce "PVP OFF",bc_all; end; }
  12. adjust monster's DEX or Level since both affect the hit rate. you can add in your custom skill casting database in the db/mob_skill_db2.txt , tons of example you can get inside the file.
  13. you can use doevent , the addtimer need you to attach the script to an event label that appeared in a NPC, not FUNCTION.
  14. change your script from "FUNCTION" become a "NPC"
  15. change the encoding type and langtype value based on this table and your preferable language that used in game.
  16. probably your langtype didnt change to a correct one ?
  17. a serious reason for changing latest revision ?? stability & maintainability better performance less bug latest update etc I feel that it's inappropriate to blame rAthena for this. You cant blame rAthena for breaking these just because your 3rd party tool failed to work in your server. It's 3rd party tools issue after all. There are no emulator out there that doing update based on other 3rd party tool compability. it's 3rd party tools who have to keep on update to keep it working on every latest revision. Simple Scenario If I am confusing you. If you playing any hacking tools in any servers, you wont ask the server to update based on your hacking tools , so that your hacking tools still working after every update.
  18. double check your configuration ... especially the inter_conf
  19. you have incompleted script, or you removed some script that is needed.
  20. Emistry

    vend

    something like this ?? https://rathena.org/board/index.php?/files/file/2933-%7B?%7D/
  21. if( BaseLevel > 85 ){ set .@Price,12345; // Zeny required for heal } else{ set .@Price,0; // Zeny required for heal } set .@Buffs,0; // Also buff players? (1: yes / 0: no) set .@Delay,10; // Heal delay, in seconds
  22. if( BaseLevel > 85 ){ mes "I dont heal if level above 85!"; close; }
  23. Searching for help ?? read these !! http://rathena.org/board/forum-30/announcement-9-scripting-support-easy-as-1-2-3/ http://rathena.org/board/topic/85849-scripting-support-rules/ Scripting Support Rules You have to clearly and elaborately describe your problem. You will have to use the code bbcode tag whenever you would like to post either scripting code or map-server error messages.
  24. try http://pastebin.com/raw.php?i=BKvPigrv
×
×
  • Create New...