Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. ya..by default..this game will give you 1 item everytime you success to match 1 pair of skill effects displayed.
  2. by default...2012-04-10 should be able to open multiple window...at least my client able to open multiple window.. unless you have diff for disable multiple window...
  3. check the script...maybe there are some extra / wrong place that you guys put the curley bracket.. >.<
  4. what client date..and what you diff for your client....
  5. are you setting multiple reward in that line ?? if yes then change set to setarray did you edit anything in the script ? show your script ... both will still working fine....
  6. Emistry

    DoTA Runes

    the script can only used in 1 map each npc..if you want to enable this script in other map, you have to duplicate the NPC and put it in those map you want. and it have a 60 seconds delay before it show up again.. set .Duration,60;
  7. Emistry

    DoTA Runes

    show your scripts.
  8. elaborate more....how you write your aliases command...show it...
  9. you mean this ? http://rathena.org/board/topic/62654-send-e-mail-to-someone/page__hl__mail
  10. what mean ? the script will still work on rAthena .....getgmlevel() hasnt removed. OnWhisperGlobal event label remain the same...
  11. Please read this topic before you made any post in this forum.. http://rathena.org/board/forum-30/announcement-9-scripting-support-easy-as-1-2-3/
  12. that's why you error....your script required those wav files in order to work properly..but you removed it. if you dont want the sound...you deleted the wav files... you have to edit your script to ensure it wont execute any wav files when it's triggered.
  13. most of the users are now using lub...and their client are mostly read from lub.. anyway..i think lua will still work if your client diffed to read lua ....
  14. get all the system files here http://subversion.assembla.com/svn/ClientSide/Lua_Project/System/ lub files here.. http://subversion.assembla.com/svn/ClientSide/Lua_Project/lubs/
  15. your data folder. your RO/System/Font/ ....
  16. edit your lub files... http://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/stateicon/stateiconinfo.lua
  17. you mean this ? trunk/src/map/party.c #ifdef RENEWAL_EXP /** * Renewal Experience Earning Mode **/ void party_renewal_exp_mod(unsigned int *base_exp, unsigned int *job_exp, int lvl, int moblvl) { int diff = lvl - moblvl, boost = 0; //-2 ~ +5: 100% if( diff >= -2 && diff <= 5 ) return;//we don't change anything, it's 100% boost //-3 ~ -10: +5% boost for each if( diff >= -10 && diff <= -3 ) boost = 100 + (( -diff * 5 ) - 15 ); // 40% boost if difference is <= -10 else if ( diff <= -10 ) boost = 40; else { boost = ( diff > 5 && diff < 11 ) ? 95 : ( diff > 10 && diff < 16 ) ? 90 : ( diff > 15 && diff < 21 ) ? 85 : ( diff > 20 && diff < 26 ) ? 60 : ( diff > 25 && diff < 31 ) ? 35 : 10; } if( *base_exp ) *base_exp = (unsigned int)cap_value(*base_exp * boost / 100, 1, UINT_MAX); if( *job_exp ) *job_exp = (unsigned int)cap_value(*job_exp * boost / 100, 1, UINT_MAX); return; } #endif
  18. create ur own grf and make sure your client read that grf and ur official ro grf .... i believe most of us here are using custom grf + official grf..and not only official grf only... if you dont know how to create a grf / data folder.. search the forum, there have been soooo many guides we posted.
  19. after review back your 1st post .... the script is actually working ....just checked the wrong items.. @inventorylist_expire[0] you only checked for the very first items in the array ...but not the rest ~ so you have to add a loop like what QQfoolsorellina did.... if you need to check for certain item with rental....it would be like this.. getinventorylist; for ( set .@i, 0; .@i < @inventorylist_count; set .@i, .@i +1 ) if(@inventorylist_expire[.@i] && @inventorylist_id[.@i] == <itemID>){ mes "Please make sure you dont have "+getitemname(@inventorylist_id[.@i])+" as rental items."; close; }
×
×
  • Create New...