Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. find all set Zeny, Zeny - 1000000000; mes @brdcast$; add below set .DelayTime,gettimetick(2) + 60; below the npc header if( .DelayTime > gettimetick(2) ){ set .@last,.DelayTime - gettimetick(2); set .@min, .@last % (24*60*60) % (60*60) / (60); set .@sec, .@last % (24*60*60) % (60*60) % (60); mes "Wait for "+.@min+" minutes "+.@sec+" seconds"; close; }
  2. use a compatible lub file for your clients... beside...if you minimize your skill window... these skill should appear in the skill window like others...
  3. search the forum ~ http://subversion.assembla.com/svn/ClientSide/Lua_Project/lubs/
  4. Bindatcmd it's added in script command in rAthena.. if you are using eA ,..you can just try adding the diff manually check tracker or ToastOfDoom's Topic in old eA forum.
  5. trunk/conf/battle/pet.conf // When the master attacks a monster, whether or not the pet will also attack. (Note 1) pet_attack_support: no // When the master receives damage from the monster, whether or not the pet attacks back. (Note 1) pet_damage_support: no // Rate at which a pet will support it's owner in battle. (Note 2) // Affects pet_attack_support & pet_damage_support. pet_support_rate: 100
  6. most probably..its ur Header Tabbing problem...you didnt put the TAB correct..... MAP,X,Y,DIR <TAB> script <TAB> NPCNAME <TAB> SPRITE,{
  7. take a calculator and calculate.... 1000 milisecond = 1 seconds 60,000 milisecond = 1 minute 300,000 millisecond = 5 minute
  8. not sure about IP Stuff... and...those data files / translation stuff...you can actually search it in forum, i am sure you will get alot of result regarding this... Data Folder : http://subversion.assembla.com/svn/ClientSide/Translation_Project/data/ Lub File : http://subversion.assembla.com/svn/ClientSide/Lua_Project/lubs/ Others : http://rathena.org/board/topic/61407-popular-requested-links/
  9. yes it will use the pre-re EDP Formula....
  10. it is not possible...unless you able to diff your client to disable player to edit there....O.O not sure....
  11. hmm ? is this exist in official rA SVN ? didnt found... sc_start SC_SpeedUp2,20000,0; the current usable item that able to give you highest bonus speed is this 12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp1,5000,0; },{},{}
  12. http://rathena.org/board/topic/53421-weediffgen/page__st__100#entry135295
  13. make sure your client didnt read for data folder / read lua 1st .. disable both ... and make sure it read the correct GRF in your data.ini file
  14. find the script that enable your @fakename upon login...and remove it.. otherwise... find the source mod that enable @fakename to remain the guild / party should be somewhere in source release section.
  15. i suggest you to alway use the latest script.. https://rathena.org/board/index.php?/files/file/2504-%7B?%7D/ to change the currency...just edit this part.. // Currency [ Item ID / Variable Name ] set @Currency$,"7179"; and by default..your script isnt use Zeny...but itemID#7179
  16. try this.. trunk/npc/guild/agit_main.txt change if (!mobcount(strnpcinfo(2),"Agit#"+strnpcinfo(2)+"::OnAgitBreak")) { to this.. if (!mobcount(strnpcinfo(2),"Agit#"+strnpcinfo(2)+"::OnAgitBreak") && agitcheck() ) {
  17. monster "caspen",0,0,"Treasure Chest",1845,1,"Treasure Chest Event::OnTBoxKilled"; initnpctimer; end; OnTimer1800000: announce "Event Cancelled",0; killmonster "caspen","All"; stopnpctimer; end;
  18. trunk/npc/custom/woe_controller.txt setarray .Reward[0],14001,1; // Reward for all members of conquering guilds, per castle: <ID>,<Count>{,...} (0 to disable)
  19. you mean those script command ??? this ? trunk/doc/script_commands.txt
×
×
  • Create New...