Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. for your information, every maps required the loadevent mapflag to trigger the OnPCLoadMapEvent. otherwise it wont trigger the script.
  2. that's currently not possible. all the forged information such as "very very very" or "element" or "creator id" is stored within all the 4 slots of the weapon. it might be possible if you could find a way to revamp how these information store or retrieve by the server.
  3. @Noturn cant reproduce your issue.. hmm @LutherKing follow the guide given here. [Guide] Convert Script to eAthena compatible version.
  4. Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any).
  5. SVN 12427 .... that was like.. 8 years ago ?? perhap you should update your svn. Beside it's no longer a SVN, it's GIT now. rAthena has switched to GIT long ago.
  6. this post explained why. http://herc.ws/board/topic/10777-not-detect-mvp-revive-or-dead/?p=63663 there was a way to fix it if not mistaken, probably by disable the dynamic mob. https://eathena.ws/board/index.php?showtopic=242050
  7. I think there are some limitation about thor patcher maybe. Even a files with 40MB it will forever stucked during repack/saving, experienced the same issues last year when I try to patch the prontera texture. Your best way would be just reupload the complete GRF and have the players redownload it, I believe it's way faster than download/patch using the thor patcher.
  8. @ohyono Although it seem abit late, but please follow the board rules. All script release should be translated to english. Please update the script when you have time. @cfelten work just fine in my test server... Perhap you should provide more information regarding your issue so that other can help you debug it.
  9. disable this line npc/quests/the_sign_quest.txt#L12239 and these npc/quests/the_sign_quest.txt#L12252-L12253
  10. you need some kind of source mod to keep track of the damage you done to the monster. something like OnPCAttackEvent etc without that source mod, your second idea is impossible for now. anyway someone has made similar system long ago, probably might not compatible to current rathena since it's outdated.
  11. IPS isnt really a free software, you required licenses to use it. Find out more here : https://www.invisionpower.com/buy if you're looking for free forum software, you could try these MyBB PhpBB SMH etc.
  12. My very first RO guidebook another set of collection shared by other RO fans. I miss these MVP Card Monthly access card I didnt have the chances to collect them all ..
  13. it doesnt need src mod to compare in SQL query. if i recall correctly, @kick should only work for char name, and not char id ?
  14. possible, use the getvariableofnpc if the variable is a npc scope variables.
  15. @Noire For your information "Request" isn't an informative title. Please follow the board rules when you open a new topic next time. This isn't the first time we help you adjust the topic title. I hope this will be the last time. Thank you.
  16. all your switch-case are missing break
  17. check all the changes that you have done to the server. previously I remember I tested with the range of 300 cells away.
  18. switch ( rank_level ) { case 1: .@rank_title$ = "Rank 1"; break; case 2: .@rank_title$ = "Rank 2"; break; case 3: .@rank_title$ = "Rank 3"; break; case 4: .@rank_title$ = "Rank 4"; break; default: .@rank_title$ = "Default Title"; break; } announce "Congratulation to ["+.@rank_title$+"] "+strcharinfo(0)+" for completed the quests.",bc_all; you could try something like this. of course there are alot of ways to do this as well.
  19. Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any).
  20. you can actually try this doc/script_commands.txt#L5376 since it can display custom SI icon.
  21. because 10 cells isnt far enough if compare with 14 cells... O_O for your information 10 is lesser than 14..
  22. ..... WHERE `char_id` = "+getcharid(0)+" ........
×
×
  • Create New...