Jump to content

crazyarashi

Developer
  • Posts

    776
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by crazyarashi

  1. You can add 2hours WOE in Euphy's WOE Controller, but the maximum time for WOE is until 23:00 Only or 11PM Because 00:00 or 12AM is a start of another day. If you want to add 2 hours WOE you can set the WOE to start at 21:00 or less
  2. im not really sure with this one, i can't confirm that will happen or not
  3. you just need to edit the day and time it will start and day and time the rates will go back to normal
  4. OnSat2100: // saturday 9PM rates goes back to normal .base_exp_rate = getbattleflag("base_exp_rate"); .job_exp_rate = getbattleflag("job_exp_rate"); .item_rate_common = getbattleflag("item_rate_common"); .item_rate_heal = getbattleflag("item_rate_heal"); .item_rate_use = getbattleflag("item_rate_use"); .item_rate_equip = getbattleflag("item_rate_equip"); callsub( L_rate,1 ); //calls normal rate end; OnSat2000: // saturday 8PM x2 rates start callsub( L_rate,2 ); //calls x2 rate end; Emistry's Different Floating Rates
  5. you should recheck the link again for the download :))
  6. are you running on renewal perhaps? :))
  7. //conf/battle/monster.conf // Display some mob info next to their name? (add as needed) // (does not works on guardian or Emperium) // 1: Display mob HP (Hp/MaxHp format) // 2: Display mob HP (Percent of full life format) // 4: Display mob's level show_mob_info: 0 // Change This to 2
  8. it should be available in kRO's data.grf
  9. //Sample 2538,E_KING_PORING,King Poring,King Poring,100,1000000,5000,10000,10000,3,2500,3800,150,120,100,100,100,80,150,60,8,10,2,0,80,102779031,100,336,290,720,7500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 you should be able to make it just follow the Structure of Database in the top of mob_db.txt
  10. if you plan to make it as a MVP Mobs. you should just costumize one for this since King Poring is from iRO 2013 Summer Event since the king poring from the instance poring village is very weak (HP around 2k or less)
  11. can you be more specific im very confused on what you're talking about
  12. i really dont know about offline pack but it is possible if it's a git repo:))
  13. you can simply update your files using git pull but it's only possible if all your edits/configs should be on custom folder/import folder so you won't have conflicts when you update your git hash if you do have conflict you can still manually update your rathena files
  14. Do you mind sending the script you used and a screenshot perhaps i tested in latest hash w/ 2015-11-04a and its working fine
  15. that's for the minimap markers :))
  16. Find inside your grf the file luafiles514/luafiles/signboardlist.lub :)) { "prontera", 154, 187, 0, IT_BMP, "À¯ÀúÀÎÅÍÆäÀ̽º\\information\\over_guide.bmp" }, < Delete This Line
  17. checkquest(1300, PLAYTIME); //Example .@Cooldown = checkquest(1300, PLAYTIME); if (.@Cooldown == 2) { mes "[NPC]"; mes "You are still on cooldown please wait for 24 hours"; close; } The Char ID will be the PC who talked to the NPC :))
  18. prontera,255,55,5 script Tool Dealer#prt 125,{ mes "What do you like to buy?"; switch( select( "Ammunition Box", "Single Ammo", "Identify My Items", "Nothing" ) ) { next; case 1: callshop "AmmunitionBox",1; end; case 2: callshop "SingleAmmo",1; end; case 3: mes "Here you go"; callfunc "identify123"; end; case 4: mes "Okay, have a nice day"; close; } } - shop Tool Dealer#shop::AmmunitionBox -1,501:-1 // Add ammo box here - shop Tool Dealer#shop::SingleAmmo -1,502:-1 //single ammo add here function script identify123 { getinventorylist; while( .@idn < @inventorylist_count ){ if ( !@inventorylist_identify[.@idn] ){ delitem2 @inventorylist_id[.@idn],1,0,0,0,0,0,0,0; getitem @inventorylist_id[.@idn],1; } .@idn++; } close; }
  19. - script MonsterKill -1,{ OnNPCKillEvent: if( getmonsterinfo(killedrid, MOB_MVPEXP) ){ announce "Citizen of midgard, The Brave Adventurer "+ strcharinfo(0)+" has killed the MVP Monster "+getmonsterinfo(killedrid,0)+" at "+strcharinfo(3),0,0xFFFF00; } }
  20. - script MonsterKill -1,{ OnNPCKillEvent: if( getmonsterinfo(killedrid, MOB_MVPEXP) ){ announce +"Citizen of midgard, The Brave Adventurer"+ strcharinfo(0)+" has killed the MVP Monster "+getmonsterinfo(killedrid,0)+" at "+strcharinfo(3),0,0xFFFF00; } }
×
×
  • Create New...