Jump to content

kaiGAMING

Members
  • Posts

    84
  • Joined

  • Last visited

Everything posted by kaiGAMING

  1. 30x is too low, and 90x.
  2. thanks Cisqua!
  3. hi guys, can you help me how to set to random respawn of the monster? this is the script - script PPE_inital -1,{ OnInit: set $@PoringEventChecker, 0; set $@PoringEventPrizeChecker, 0; set $PPEDefendingChampion$,"secret"; end; } poring_w02,129,101,4 script Pirate Punch Event 2005,{ if (getgmlevel() >= 30) goto LMS_Admin; mes "[ Pirate Punch Event ]"; mes "Hello, I'm the Pirate Punch Event Manager. My record says that the defending champion on this event was "+$PPEDefendingChampion$+". Anyways, what do you want to do?"; next; menu "How does this work?",PPE_HowTo,"Join Event Now",PPE_Join,"Claim my reward",PPE_claim,"Nevermind",PPE_nvm; PPE_HowTo: mes "[ Pirate Punch Event ]"; mes "This is an event where everyone can join in. All you have to do is to punch the right monsters and to avoid the wrong ones. Each kind of monster has its corresponding points. You only have 5 minutes to earn points as much as you can. The Highest Scorer at the end of this event shall win 150 PvP Coins"; mes "Reminder: No weapons, cart, and pets is allowed in this event."; close; PPE_Host: if ( $@PoringEventChecker != 0 ){ mes "[ Pirate Punch Event ]"; mes "There is Pirate Punch Event on-going. You can host this event if it is still on-going."; close; LMS_Admin: if ( $@PoringEventChecker != 0 ){ mes "[ Pirate Punch Event ]"; mes "There is Pirate Punch Event on-going. You can host this event if it is still on-going."; close; } mes "[ Pirate Punch Event ]"; mes "Hi GM! Would you like to start the Pirate Punch Event?"; next; menu "Yes",PPE_HostYes,"No",-; mes "[ Pirate Punch Event ]"; mes "Okay. Maybe next time."; close; PPE_HostYes: if ( Zeny >= 1 ){ mes "[ Pirate Punch Event ]"; mes "Thanks "+strcharinfo(0)+", for hosting this event. It will start shortly."; set Zeny, Zeny-1; close2; set $@PoringEventChecker, 1; announce ""+strcharinfo(0)+" Started the Pirate Punch Event!", bc_all; killmonsterall "job_cru"; sleep2 10000; initnpctimer; end; }else{ mes "[ Pirate Punch Event ]"; mes "Sorry "+strcharinfo(0)+", you dont have enough zenies to host this event."; close; }end; }end; PPE_Join: if ( $@PoringEventChecker != 0 ){ if (gethominfo(2) != "null"){ mes "[ Pirate Punch Event ]"; mes "No homunculus is allowed in this event! Sorry "+strcharinfo(0)+" but you can't join this event!"; close; } if (getpetinfo(2) != "null"){ mes "[ Pirate Punch Event ]"; mes "No pet is allowed in this event! Sorry "+strcharinfo(0)+" but you can't join this event!"; close; } if (checkcart()){ mes "[ Pirate Punch Event ]"; mes "No cart is allowed! Sorry "+strcharinfo(0)+" but you can't join this event!"; close; } if (checkfalcon()){ mes "[ Pirate Punch Event ]"; mes "No falcon is allowed! Sorry "+strcharinfo(0)+" but you can't join this event!"; close; } if (checkriding()){ mes "[ Pirate Punch Event ]"; mes "No riding is allowed! Sorry "+strcharinfo(0)+" but you can't join this event!"; close; } mes "[ Pirate Punch Event ]"; mes "Good luck "+strcharinfo(0)+"."; close2; set @PoringPoints, 0; warp "job_cru.gat",23,108; end; }else{ mes "[ Pirate Punch Event ]"; mes "Sorry. No Pirate Punch Event is held at the moment."; close; }end; PPE_claim: if ($HighestPoringPointsName$ == strcharinfo(0) && $@PoringEventPrizeChecker == 1) { mes "[Pirate Punch Event]"; mes "Congragulations "+strcharinfo(0)+". Here is your reward."; getitem 6242,150; set $HighestPoringPointsName$,""; set $HighestPoringPoints,0; set $@PoringEventPrizeChecker, 0; close; } else { mes "[ Pirate Punch Event ]"; mes "Sorry "+strcharinfo(0)+". You're not the winner so you can't claim anything"; close; }end; PPE_nvm: mes "[ Pirate Punch Event ]"; mes "Okay. Maybe next time."; close; OnPoringKill: if (getequipweaponlv(4)==0 && getequipweaponlv(3)==0){ set @PoringPoints,@PoringPoints+1; if (@PoringPoints > $HighestPoringPoints) { set $HighestPoringPointsName$,strcharinfo(0); set $PPEDefendingChampion$,strcharinfo(0); set $HighestPoringPoints,@PoringPoints; } dispbottom "You have "+@PoringPoints+" point(s)"; end; }else { dispbottom "You have to punch the monster without any weapon."; warp "poring_w02",129,99; end; } OnDropsKill: if (getequipweaponlv(4)==0 && getequipweaponlv(3)==0){ set @PoringPoints,@PoringPoints+5; if (@PoringPoints > $HighestPoringPoints) { set $HighestPoringPointsName$,strcharinfo(0); set $PPEDefendingChampion$,strcharinfo(0); set $HighestPoringPoints,@PoringPoints; } dispbottom "You have "+@PoringPoints+" point(s)"; end; }else { dispbottom "You have to punch the monster without any weapon."; warp "poring_w02",129,99; end; } OnPoporingKill: if (getequipweaponlv(4)==0 && getequipweaponlv(3)==0){ if (@PoringPoints < 10) { set @PoringPoints, 0; dispbottom "You have "+@PoringPoints+" point(s)"; end; }else { set @PoringPoints,@PoringPoints-10; dispbottom "You have "+@PoringPoints+" point(s)"; end; }end; }else { dispbottom "You have to punch the monster without any weapon."; warp "poring_w02",129,99; end; } OnFabreKill: if (getequipweaponlv(4)==0 && getequipweaponlv(3)==0){ set @PoringPoints,@PoringPoints+2; if (@PoringPoints > $HighestPoringPoints) { set $HighestPoringPointsName$,strcharinfo(0); set $PPEDefendingChampion$,strcharinfo(0); set $HighestPoringPoints,@PoringPoints; } dispbottom "You have "+@PoringPoints+" point(s)"; end; }else { dispbottom "You have to punch the monster without any weapon."; warp "poring_w02",129,99; end; } if ( $@PoringEventChecker == 0 ) { set $@PoringEventChecker, 1; initnpctimer; end; } OnTimer10000: announce "Pirate Punch Event: will start in 1 Minute.",0; end; OnTimer55000: announce "Pirate Punch Event: ~ 5 ~",0; end; OnTimer56000: announce "Pirate Punch Event: ~ 4 ~",0; end; OnTimer57000: announce "Pirate Punch Event: ~ 3 ~",0; end; OnTimer58000: announce "Pirate Punch Event: ~ 2 ~",0; end; OnTimer59000: announce "Pirate Punch Event: ~ 1 ~",0; end; OnTimer60000: announce "Pirate Punch Event: Has started!",0; monster "job_cru",23,71,"+1 Point",2005,50,"Pirate Punch Event::OnPoringKill"; monster "job_cru",23,71,"+5 Points",2005,10,"Pirate Punch Event::OnDropsKill"; monster "job_cru",23,71,"+2 Points",2005,20,"Pirate Punch Event::OnFabreKill"; monster "job_cru",23,71,"-10 Points",2005,50,"Pirate Punch Event::OnPoporingKill"; end; OnTimer70000: mapannounce "job_cru.gat","Pirate Punch Event: 4 minutes left.",0; monster "job_cru",23,71,"+1 Point",2005,50,"Pirate Punch Event::OnPoringKill"; monster "job_cru",23,71,"+5 Points",2005,5,"Pirate Punch Event::OnDropsKill"; monster "job_cru",23,71,"+2 Points",2005,20,"Pirate Punch Event::OnFabreKill"; monster "job_cru",23,71,"-10 Points",2005,20,"Pirate Punch Event::OnPoporingKill"; end; OnTimer130000: mapannounce "job_cru.gat","Pirate Punch Event: 3 minutes left.",0; monster "job_cru",23,71,"+1 Point",2005,30,"Pirate Punch Event::OnPoringKill"; monster "job_cru",23,71,"+5 Points",2005,5,"Pirate Punch Event::OnDropsKill"; monster "job_cru",23,71,"+2 Points",2005,20,"Pirate Punch Event::OnFabreKill"; monster "job_cru",23,71,"-10 Points",2005,15,"Pirate Punch Event::OnPoporingKill"; mapannounce "job_cru.gat","Pirate Punch Event: Score Leader is "+$HighestPoringPointsName$+".",0; end; OnTimer190000: mapannounce "job_cru.gat","Pirate Punch Event: 2 minutes left.",0; monster "job_cru",23,71,"+1 Point",2005,30,"Pirate Punch Event::OnPoringKill"; monster "job_cru",23,71,"+5 Points",2005,5,"Pirate Punch Event::OnDropsKill"; monster "job_cru",23,71,"+2 Points",2005,20,"Pirate Punch Event::OnFabreKill"; monster "job_cru",23,9,"-10 Points",2005,5,"Pirate Punch Event::OnPoporingKill"; mapannounce "job_cru.gat","Pirate Punch Event: Score Leader is "+$HighestPoringPointsName$+".",0; end; OnTimer250000: mapannounce "job_cru.gat","Pirate Punch Event: 1 minute left.",0; monster "job_cru",23,71,"+1 Point",2005,50,"Pirate Punch Event::OnPoringKill"; monster "job_cru",23,71,"+5 Points",2005,5,"Pirate Punch Event::OnDropsKill"; monster "job_cru",23,71,"+2 Points",2005,20,"Pirate Punch Event::OnFabreKill"; monster "job_cru",23,71,"-10 Points",2005,5,"Pirate Punch Event::OnPoporingKill"; end; OnTimer310000: stopnpctimer; announce "Pirate Punch Event has ended and the event Winner is "+$HighestPoringPointsName$+".",0; killmonsterall "job_cru"; set $@PoringEventChecker, 0; set $@PoringEventPrizeChecker, 1; sleep2 5000; mapannounce "job_cru.gat","Pirate Punch Event: Thank you for joining the event.",16; sleep2 10000; mapwarp "job_cru","que_moon",100,22; end; } thank you!
  4. my server is super high rate.
  5. here
  6. hi guys, can someone explain it to me how to edit this? { "item_logarithmic_drops", &battle_config.logarithmic_drops, 0, 0, 1, }, { "item_drop_common_min", &battle_config.item_drop_common_min, 1, 1, 10000, }, { "item_drop_common_max", &battle_config.item_drop_common_max, 10000, 1, 10000, }, { "item_drop_equip_min", &battle_config.item_drop_equip_min, 1, 1, 10000, }, { "item_drop_equip_max", &battle_config.item_drop_equip_max, 10000, 1, 10000, }, { "item_drop_card_min", &battle_config.item_drop_card_min, 1, 1, 10000, }, { "item_drop_card_max", &battle_config.item_drop_card_max, 10000, 1, 10000, }, { "item_drop_mvp_min", &battle_config.item_drop_mvp_min, 1, 1, 10000, }, { "item_drop_mvp_max", &battle_config.item_drop_mvp_max, 10000, 1, 10000, }, { "item_drop_heal_min", &battle_config.item_drop_heal_min, 1, 1, 10000, }, { "item_drop_heal_max", &battle_config.item_drop_heal_max, 10000, 1, 10000, }, { "item_drop_use_min", &battle_config.item_drop_use_min, 1, 1, 10000, }, { "item_drop_use_max", &battle_config.item_drop_use_max, 10000, 1, 10000, }, { "item_drop_add_min", &battle_config.item_drop_adddrop_min, 1, 1, 10000, }, { "item_drop_add_max", &battle_config.item_drop_adddrop_max, 10000, 1, 10000, }, { "item_drop_treasure_min", &battle_config.item_drop_treasure_min, 1, 1, 10000, }, { "item_drop_treasure_max", &battle_config.item_drop_treasure_max, 10000, 1, 10000, }, { "item_rate_mvp", &battle_config.item_rate_mvp, 100, 0, 1000000, }, { "item_rate_common", &battle_config.item_rate_common, 100, 0, 1000000, }, { "item_rate_common_boss", &battle_config.item_rate_common_boss, 100, 0, 1000000, }, { "item_rate_equip", &battle_config.item_rate_equip, 100, 0, 1000000, }, { "item_rate_equip_boss", &battle_config.item_rate_equip_boss, 100, 0, 1000000, }, { "item_rate_card", &battle_config.item_rate_card, 100, 0, 1000000, }, { "item_rate_card_boss", &battle_config.item_rate_card_boss, 100, 0, 1000000, }, { "item_rate_heal", &battle_config.item_rate_heal, 100, 0, 1000000, }, { "item_rate_heal_boss", &battle_config.item_rate_heal_boss, 100, 0, 1000000, }, { "item_rate_use", &battle_config.item_rate_use, 100, 0, 1000000, }, { "item_rate_use_boss", &battle_config.item_rate_use_boss, 100, 0, 1000000, }, { "item_rate_adddrop", &battle_config.item_rate_adddrop, 100, 0, 1000000, }, { "item_rate_treasure", &battle_config.item_rate_treasure, 100, 0, 1000000, }, for example { "item_drop_common_min", &battle_config.item_drop_common_min, 1, 1, 10000, }, what is 1, 1, 10000. i need to edit this because im setting to drops.conf and the map server have warning and backing to default.
  7. hi rAthena, im having problem on my fluxcp when i click to my account then click 1 of my character and error came up. and when i click the reset position,reset look. i already edit the access.php but nothing happens. regards,
  8. much appreciated!
  9. thanks bro! its working now! it must be /data/sprite/Àΰ£Á·/ÇåÅÍ
  10. here. and this for item_db2
  11. still the same
  12. thanks! last question, the bow viewID is 11 right? cant set to custom viewID?
  13. for archers,snipers,stalkers?
  14. my client date. 2011-03-15
  15. try this. chmod +x configure ./configure make clean make sql enter it 1 by 1.
  16. Hello rAthena, im having problem making a custom weapon. accessoryid.lua accname.lua idnum2itemdisplaynametable.txt idnum2itemresnametable.txt idnum2itemdesctable.txt .spr .act the problem is, the custom weapon is not showing the real sprite. for example, quincy bow, just showing a normal bow, not a quincy sprite. do i miss something there? regards.
  17. add me on skype @jaipyo or in ym [email protected]
  18. me too. its working fine to me.
  19. Come on dude. rAthena SVN is free. i think he's to lazy to re edit the server files.
  20. thanks bro! 100% working.
  21. add me on skype. jaipyo
  22. have the default folder there. /e5 [solved]
  23. hi rAthena, after editing the servers.php and applications.php error came up. [b] Critical Error[/b] An error was encountered during the lifetime of the application. This could be due to a variety of problems, such as a bug in the application. [b]However, normally it is caused by [i]misconfiguration[/i].[/b] [b] Exception Details[/b] Error: [b]Flux_Error[/b] Message: [i]The selected theme 'default' does not exist.[/i] File: /home/worldga/public_html/cp/lib/Flux.php:236 File Line Function/Method /home/worldga/public_html/cp/lib/Flux.php 302 Flux::raise() /home/worldga/public_html/cp/lib/Flux.php 120 Flux::parseAppConfigFile() /home/worldga/public_html/cp/index.php 70 Flux::initialize() [b] Exception Trace As String[/b] #0 /home/worldga/public_html/cp/lib/Flux.php(302): Flux::raise('The selected th...') #1 /home/worldga/public_html/cp/lib/Flux.php(120): Flux::parseAppConfigFile('config/applicat...') #2 /home/worldga/public_html/cp/index.php(70): Flux::initialize(Array) #3 {main}
  24. [solved] thanks guys! really appreciated!
  25. ito po, chmod +x configure then ./configure then make clean then make sql
×
×
  • Create New...