Jump to content

GM Takumirai

Members
  • Posts

    592
  • Joined

  • Last visited

Everything posted by GM Takumirai

  1. - thanks @Emistry.. you always answer problem of players.. how i wish to rate you a 5 star. thank you - sadly i still can't open the script npc ingame..
  2. i requested this to Emistry but its not working prontera.gat,146,171,6 script Gigler 402,{ mes "Welcome :"; mes "Would you like to contribute for double drop rate and experience?"; mes "I need [Zeny] to modify the rates and share it to all players here."; next; mes "Total Zeny Gained :"; mes "^FF0000"+.TotalZeny+"^000000 Zeny."; mes "Need "+.TargetZeny+" Zeny. To Activate the modified rates, would you like to share?"; next; if( select("Donate Zeny:Cancel") == 1 ){ mes "How many will be Donated ?"; input .@Amount,0,Zeny; mes "Done,.. you have Donated "+.@Amount+" Zeny."; set Zeny,Zeny - .@Amount; if( .TotalZeny >= .TargetZeny ){ set .TotalZeny,0; set .Duration,gettimetick(2) + ( 24 * 60 ); announce "Rates already modified..[x2] drop rate[x2] exp. rate. for 1 day, Please Re-Log to enjoy the double rates."; } } close; OnInit: set .TargetZeny,50000000; set .Rate,2; end; OnPCLoginEvent: if( .Duration > gettimetick(2) ){ sc_start SC_EXPBOOST,( .Duration - gettimetick(2) ),( .Rate * 100 ); sc_start SC_ITEMBOOST,( .Duration - gettimetick(2) ),( .Rate * 100 ); } end; }
  3. Just try download the Miruku - using utorrent - i don't know what is best Miruku or kRO
  4. ok thanks guys.. im always patient on what they are doing, and i did't post this to force them to make it fast hehehe... im going to read the track for the development..
  5. thanks emistry - i will use this thanks again
  6. Thanks for your reply guys.. anyway i tried also updating svn and reading, but i hope someone can post the development of rAthena on 3rd job thanks..
  7. its hard to read the track, its better to have a SVN development threads .. Hope someone can update this
  8. - i don't know where to ask and where to check the development.. - can i ask about the development of the 3rd job.. 3-1 and 3-2 development..
  9. @ Emistry is this for individual player only? - or for guild ?
  10. 3ceam svn already ended there project.. and no more updates from them..
  11. can you modify it @emistry?.. - because i dont want to mess with the script.. - and is't possible if the script will only work in a guild and guild members??.. can you check my modify emistry prontera.gat,146,171,6 script Floating Rates#2 402,{ //------------------------- //Main Configuration set $oribrate,10000; //Your Original Base Exp Rate. set $orijrate,10000; //Your Original Job Exp Rate. set $oridrate,10000; //Your Original Common Drop Rate. set $zenyneeded,50000000; //Zeny needed to activate Floating Rates. set .@curzeny,readparam(20); //Reads the current zeny of the player. set .@bfloatrate,rand(50000,80000); //Floating Base Exp. set .@jfloatrate,rand(50000,80000); //Floating Job Exp. set .@dfloatrate,rand(50000,80000); //Floating DropRate set @nn$,"[Floating Rates]"; //NPC Name. //------------------------- //Main Script if ( getgmlevel() >= 60 ) goto L_GM; L_Normal: mes @nn$; mes "Hello!"; mes "If we reach the ^00ff0010,000,000^000000 Zeny balance then we start a floating rates!"; next; mes @nn$; mes "Current Balance : ^00ff00"+$fzeny+"^000000 Zeny."; mes "We need more ^ff0000"+($zenyneeded-$fzeny)+" ^000000Zeny before we can start the floating rates"; mes "Do you want to contribute some zeny?"; next; menu "Yes",-,"No",L_End; mes @nn$; mes "Currently you have ^0000ff"+Zeny+"^000000 Zeny."; mes "So,what do you say?"; next; menu "I would like to contribute some zeny!",L_Contribute,"Sorry I need that zeny.",L_End; L_Contribute: mes @nn$; mes "How many zeny do you like to spend?"; input .@zcontribute; if ( .@zcontribute == 0 ) { next; mes @nn$; mes "I don't think you contribute something"; mes "Please be serious."; goto L_End; } if ( .@zcontribute > .@curzeny ) { next; mes @nn$; mes "Sorry you don't have that much Zeny."; goto L_End; } mes "Thanks for your contribution!"; set $fzeny,$fzeny+.@zcontribute; set Zeny,Zeny-.@zcontribute; if ($fzeny >= $zenyneeded) { set $fzeny,$fzeny - $zenyneeded; set $frate2,1; set $bexp,.@bfloatrate; set $jexp,.@jfloatrate; set $dexp,.@dfloatrate; setbattleflag "base_exp_rate",$bexp; setbattleflag "job_exp_rate",$jexp; setBattleFlag "item_rate_common",$dexp; atcommand "@reloadmobdb"; mes "Floating Base Exp rate: "+$bexp/100+""; mes "Floating Base Exp rate: "+$jexp/100+""; mes "Floating Base Drop rate: "+$dexp/100+""; set $rema2,gettimetick(2) + ( 24 * 3600 ); set $time2, $rema2 - gettimetick(2); set $min2, $time2 % (24*60*60) % (60*60) / (60); set $sec2, $time2 % (24*60*60) % (60*60) % (60); announce "Floating Rates were sponsored by many players for 1 hour. The Floating Rates are :",0; close2; // sleep2 3000; announce "Base EXP Rate : "+getbattleflag("base_exp_rate")/100+"",0; // sleep2 3000; announce "Job EXP Rate : "+getbattleflag("job_exp_rate")/100+"",0; // sleep2 3000; announce "Common Drop Rate : "+getbattleflag("item_rate_common")/100+"",0; goto L_room; end; } next; goto L_Normal; L_fix: setbattleflag "base_exp_rate",$oribrate; setbattleflag "job_exp_rate",$orijrate; setbattleflag "item_rate_common",$oridrate; atcommand "@rates"; close2; end; L_GM: mes @nn$; mes "How can I help you?"; next; menu "Stop the floating rates",L_StopFR,"Start the floating rates",L_StartFR,"Bring me to normal menu",L_Normal; L_StopFR: if ($frate2 == 1) { set $gmstop,1; set $rema2,0; set $frate2,0; announce "The Floating Rates where stoped by the Game Master. Thanks to many people for Floating Rates!",0; delwaitingroom; setbattleflag("base_exp_rate",$oribrate); setbattleflag("job_exp_rate",$orijrate); setbattleflag("item_rate_common",$oridrate); atcommand "@reloadmobdb"; end; } next; mes @nn$; mes "The floating rates haven't started yet."; next; goto L_GM; L_StartFR: if ($frate2 == 0) { set $frate2,1; set $bexp,.@bfloatrate; set $jexp,.@jfloatrate; set $dexp,.@dfloatrate; setbattleflag "base_exp_rate",$bexp; setbattleflag "job_exp_rate",$jexp; setBattleFlag "item_rate_common",$dexp; atcommand "@reloadmobdb"; mes "Floating Base Exp rate: "+$bexp/100+""; mes "Floating Base Exp rate: "+$jexp/100+""; mes "Floating Base Drop rate: "+$dexp/100+""; set $rema2,gettimetick(2) + ( 24 * 3600 ); set $time2, $rema2 - gettimetick(2); set $min2, $time2 % (24*60*60) % (60*60) / (60); set $sec2, $time2 % (24*60*60) % (60*60) % (60); announce "Floating Rates were sponsored by GM for 1 hour. The Floating Rates are :",0; close2; // sleep2 3000; announce "Base EXP Rate : "+getbattleflag("base_exp_rate")/100+"",0; // sleep2 3000; announce "Job EXP Rate : "+getbattleflag("job_exp_rate")/100+"",0; // sleep2 3000; announce "Common Drop Rate : "+getbattleflag("item_rate_common")/100+"",0; goto L_room; } next; mes @nn$; mes "The floating rates already started."; goto L_GM; L_End: next; mes @nn$; mes "Goodbye!"; close; end; L_room: sleep 1000; delwaitingroom; set $time2, $rema2 - gettimetick(2); set $min2, $time2 % (24*60*60) % (60*60) / (60); set $sec2, $time2 % (24*60*60) % (60*60) % (60); if ($rema2 <= 59 && $rema2 >= 1) { delwaitingroom; waitingroom ""+$sec2+" Seconds remaining.",0; goto L_room; } else if ($rema2 == gettimetick(2)) { delwaitingroom; announce "The Floating Rates ended. Thanks to many people for Floating Rates!",0; setBattleFlag "base_exp_rate",$oribrate; setBattleFlag "job_exp_rate",$orijrate; setBattleFlag "item_rate_common",$oridrate; set $frate2,0; atcommand "@reloadmobdb"; end; } else if ($rema2 >= 60) { delwaitingroom; waitingroom ""+$min2+" min "+$sec2+" sec remaining.",0; goto L_room; } end; OnPcLoginEvent: if ($frate2 == 1) { announce "Floating Rates were sponsored by many players for 1 hour. The Floating Rates are : ",bc_self; // sleep2 3000; announce "Base EXP Rate : "+getbattleflag("base_exp_rate")/100+"",bc_self; // sleep2 3000; announce "Job EXP Rate : "+getbattleflag("job_exp_rate")/100+"",bc_self; // sleep2 3000; announce "Common Drop Rate : "+getbattleflag("item_rate_common")/100+"",bc_self; // sleep2 3000; announce "The remaining time of the Floating Rates : "+$min2+" minutes "+$sec2+" seconds.",bc_self; end; } else {end;} OnInit: if ($rema2 <= 59) { if ($frate2 == 0) end; delwaitingroom; waitingroom ""+$sec2+" Seconds remaining.",0; goto L_room; } else if ($rema2 == gettimetick(2)) { if ($frate2 == 0) end; delwaitingroom; if ($sp$ == "") end; announce "The Floating Rates ended. Thanks to many people for Floating Rates!",0; setBattleFlag "base_exp_rate",$oribrate; setBattleFlag "job_exp_rate",$orijrate; setBattleFlag "item_rate_common",$oridrate; set $frate2,0; atcommand "@reloadmobdb"; end; } else if ($rema2 >= 60) { if ($frate2 == 0) end; delwaitingroom; waitingroom ""+$min2+" min "+$sec2+" sec remaining.",0; goto L_room; } } - script frate#2 -1,{ OnWhisperGlobal: if (@whispervar0$ == "end" || @whispervar0$ == "e") { if (getgmlevel() >= 60) { if ($frate2 == 1) { set $gmstop,1; set $rema2,0; set $frate2,0; announce "The Floating Rates where stoped by the Game Master. Thanks to many people for Floating Rates!",0; delwaitingroom; setbattleflag("base_exp_rate",$oribrate); setbattleflag("job_exp_rate",$orijrate); setBattleFlag("item_rate_common",$oridrate); atcommand "@reloadmobdb"; end; } } } }
  12. - sorry for double post
  13. i think those skills of genetic and professor is not yet working/fix... or maybe someone can help.. its also my problem..
  14. I found this script but i need someone modify it .. prontera.gat,146,171,6 script Floating Rates#2 402,{ //------------------------- //Main Configuration set $oribrate,10000; //Your Original Base Exp Rate. set $orijrate,10000; //Your Original Job Exp Rate. set $zenyneeded,50000000; //Zeny needed to activate Floating Rates. set .@curzeny,readparam(20); //Reads the current zeny of the player. set .@bfloatrate,rand(50000,80000); //Floating Base Exp. set .@jfloatrate,rand(50000,80000); //Floating Job Exp. set @nn$,"[Floating Rates]"; //NPC Name. //------------------------- //Main Script if ( getgmlevel() >= 60 ) goto L_GM; L_Normal: mes @nn$; mes "Hello!"; mes "If we reach the ^00ff0010,000,000^000000 Zeny balance then we start a floating rates!"; next; mes @nn$; mes "Current Balance : ^00ff00"+$fzeny+"^000000 Zeny."; mes "We need more ^ff0000"+($zenyneeded-$fzeny)+" ^000000Zeny before we can start the floating rates"; mes "Do you want to contribute some zeny?"; next; menu "Yes",-,"No",L_End; mes @nn$; mes "Currently you have ^0000ff"+Zeny+"^000000 Zeny."; mes "So,what do you say?"; next; menu "I would like to contribute some zeny!",L_Contribute,"Sorry I need that zeny.",L_End; L_Contribute: mes @nn$; mes "How many zeny do you like to spend?"; input .@zcontribute; if ( .@zcontribute == 0 ) { next; mes @nn$; mes "I don't think you contribute something"; mes "Please be serious."; goto L_End; } if ( .@zcontribute > .@curzeny ) { next; mes @nn$; mes "Sorry you don't have that much Zeny."; goto L_End; } mes "Thanks for your contribution!"; set $fzeny,$fzeny+.@zcontribute; set Zeny,Zeny-.@zcontribute; if ($fzeny >= $zenyneeded) { set $fzeny,$fzeny - $zenyneeded; set $frate2,1; set $bexp,.@bfloatrate; set $jexp,.@jfloatrate; setbattleflag "base_exp_rate",$bexp; setbattleflag "job_exp_rate",$jexp; atcommand "@reloadmobdb"; mes "Floating Base Exp rate: "+$bexp/100+""; mes "Floating Base Exp rate: "+$jexp/100+""; set $rema2,gettimetick(2) + 3600; set $time2, $rema2 - gettimetick(2); set $min2, $time2 % (24*60*60) % (60*60) / (60); set $sec2, $time2 % (24*60*60) % (60*60) % (60); announce "Floating Rates were sponsored by many players for 1 hour. The Floating Rates are :",0; close2; // sleep2 3000; announce "Base EXP Rate : "+getbattleflag("base_exp_rate")/100+"",0; // sleep2 3000; announce "Job EXP Rate : "+getbattleflag("job_exp_rate")/100+"",0; goto L_room; end; } next; goto L_Normal; L_fix: setbattleflag "base_exp_rate",$oribrate; setbattleflag "job_exp_rate",$orijrate; atcommand "@rates"; close2; end; L_GM: mes @nn$; mes "How can I help you?"; next; menu "Stop the floating rates",L_StopFR,"Start the floating rates",L_StartFR,"Bring me to normal menu",L_Normal; L_StopFR: if ($frate2 == 1) { set $gmstop,1; set $rema2,0; set $frate2,0; announce "The Floating Rates where stoped by the Game Master. Thanks to many people for Floating Rates!",0; delwaitingroom; setbattleflag("base_exp_rate",$oribrate); setbattleflag("job_exp_rate",$orijrate); atcommand "@reloadmobdb"; end; } next; mes @nn$; mes "The floating rates haven't started yet."; next; goto L_GM; L_StartFR: if ($frate2 == 0) { set $frate2,1; set $bexp,.@bfloatrate; set $jexp,.@jfloatrate; setbattleflag "base_exp_rate",$bexp; setbattleflag "job_exp_rate",$jexp; atcommand "@reloadmobdb"; mes "Floating Base Exp rate: "+$bexp/100+""; mes "Floating Base Exp rate: "+$jexp/100+""; set $rema2,gettimetick(2) + 3600; set $time2, $rema2 - gettimetick(2); set $min2, $time2 % (24*60*60) % (60*60) / (60); set $sec2, $time2 % (24*60*60) % (60*60) % (60); announce "Floating Rates were sponsored by GM for 1 hour. The Floating Rates are :",0; close2; // sleep2 3000; announce "Base EXP Rate : "+getbattleflag("base_exp_rate")/100+"",0; // sleep2 3000; announce "Job EXP Rate : "+getbattleflag("job_exp_rate")/100+"",0; goto L_room; } next; mes @nn$; mes "The floating rates already started."; goto L_GM; L_End: next; mes @nn$; mes "Goodbye!"; close; end; L_room: sleep 1000; delwaitingroom; set $time2, $rema2 - gettimetick(2); set $min2, $time2 % (24*60*60) % (60*60) / (60); set $sec2, $time2 % (24*60*60) % (60*60) % (60); if ($rema2 <= 59 && $rema2 >= 1) { delwaitingroom; waitingroom ""+$sec2+" Seconds remaining.",0; goto L_room; } else if ($rema2 == gettimetick(2)) { delwaitingroom; announce "The Floating Rates ended. Thanks to many people for Floating Rates!",0; setBattleFlag "base_exp_rate",$oribrate; setBattleFlag "job_exp_rate",$orijrate; set $frate2,0; atcommand "@reloadmobdb"; end; } else if ($rema2 >= 60) { delwaitingroom; waitingroom ""+$min2+" min "+$sec2+" sec remaining.",0; goto L_room; } end; OnPcLoginEvent: if ($frate2 == 1) { announce "Floating Rates were sponsored by many players for 1 hour. The Floating Rates are : ",bc_self; // sleep2 3000; announce "Base EXP Rate : "+getbattleflag("base_exp_rate")/100+"",bc_self; // sleep2 3000; announce "Job EXP Rate : "+getbattleflag("job_exp_rate")/100+"",bc_self; // sleep2 3000; announce "The remaining time of the Floating Rates : "+$min2+" minutes "+$sec2+" seconds.",bc_self; end; } else {end;} OnInit: if ($rema2 <= 59) { if ($frate2 == 0) end; delwaitingroom; waitingroom ""+$sec2+" Seconds remaining.",0; goto L_room; } else if ($rema2 == gettimetick(2)) { if ($frate2 == 0) end; delwaitingroom; if ($sp$ == "") end; announce "The Floating Rates ended. Thanks to many people for Floating Rates!",0; setBattleFlag "base_exp_rate",$oribrate; setBattleFlag "job_exp_rate",$orijrate; set $frate2,0; atcommand "@reloadmobdb"; end; } else if ($rema2 >= 60) { if ($frate2 == 0) end; delwaitingroom; waitingroom ""+$min2+" min "+$sec2+" sec remaining.",0; goto L_room; } } - script frate#2 -1,{ OnWhisperGlobal: if (@whispervar0$ == "end" || @whispervar0$ == "e") { if (getgmlevel() >= 60) { if ($frate2 == 1) { set $gmstop,1; set $rema2,0; set $frate2,0; announce "The Floating Rates where stoped by the Game Master. Thanks to many people for Floating Rates!",0; delwaitingroom; setbattleflag("base_exp_rate",$oribrate); setbattleflag("job_exp_rate",$orijrate); atcommand "@reloadmobdb"; end; } } } } - i want the rate to last for 1 day.. - i want to put also drop rate because its not there.. only level and job exp rate are included in the script - except cards.. thanks in advance
  15. the problem still continue.. do you have a fresh or updated copy of data folder or luas or any files that can fix it.. btw thanks for the response.. - im using miruku client [updated]
  16. @ Emistry is't ok if i remove the Announce?.. because its too annoing if everytime i get some items and its going to announce it.. - script Sample -1,{ function CustomRateCard; OnNPCKillEvent: // CustomRateCard( <MobID>,<CardID>,<Rate> ); // Rate : 1 = 0.01% / 1000 = 10% / 10000 = 100% CustomRateCard( 1708,4399,10000 ); CustomRateCard( 1115,4123,1500 ); end; function CustomRateCard { if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){ getitem getarg(1),1; } return; } }
  17. - im error in homunculus AI.lua cannot read AI.AI.lua - also this error \Lua Files\SprEditInfo\2DLayerDir_F.lua can someone help me please help
  18. @Emistry i tried the script still it doesn't appear when i tried it.. the problem is it gets the requirements but it doesnt give the rented item? - Solved - prontera,218,197,5 script Mount Manager 894,{ mes "[Mount Manager]"; mes "You want to Rent the [Reins of Mount]?. you need to pay 10,000,000z and bring 2x [Reins] - drop by abbysmal knight monster"; mes "This item will be expire for 7 days"; mes "[Mount Manager]"; mes "Do you have all the requirements needed?..."; menu "Yes",-,"No, Im going back later..",L_bye; mes "[Mount Manager]"; mes "Let see if you already Have Rented a [Reins of Mount].."; next; if (countitem(12622) > 1) goto noway; if (zeny < 1000000) goto nocash; if (countitem(1064) < 2) goto noitem; mes "[Mount Manager]"; mes "Are you sure you want to rent [Reins of Mount]?"; menu "Yes",-,"No",L_bye; rentitem 12622,604800; set Zeny,Zeny -1000000; delitem 1064,2; close; noway: mes "you can't Rent [Reins of Mount]. You already have 1x in your inventory."; close; nocash: mes "[Mount Manager]"; mes "You dont have enough money to rent it, please come back if you already have enough money."; close; noitem: mes "[Mount Manager]"; mes "You dont have enough [Reins] you can get it from abbysmal knight monster."; close; L_bye: mes "[Mount Manager]"; mes "Have a nice day, please come back again."; close; } }
  19. thanks emistry, i also want to ask if my timeline in renting is correct?..
  20. prontera,138,183,5 script Mount System Manager 921,{ mes "[Mount Manager]"; mes "You want to Rent the [Reins of Mount]?. you need to pay 10,000,000z and bring 2x [Reins] - drop by abbysmal knight monster"; mes "This item will be expire for 7 days"; mes "[Mount Manager]"; mes "Let see if you already Have [Reins of Mount] and the requirements..."; next; if (countitem(12622) > 1) goto noway; if (zeny < 10000000) goto nocash; if (countitem(1064) < 2) goto noitem; rentitem 12622,432000; set Zeny,Zeny -10000000; delitem 1064,2; close; noway: mes "you can't Rent [Reins of Mount]. You already have 1x in your inventory."; close; nocash: mes "[Mount Manager]"; mes "You dont have enough money to rent it, please come back if you already have enough money."; close; noitem: mes "[Mount Manager]"; mes "You dont have enough [Reins] you can get it from abbysmal knight monster."; close; L_bye: mes "[Mount Manager]"; mes "Have a nice day, please come back again."; close; } can someone check my script?
  21. thanks, but i just want the admin account only, like in eAthena you will just change or make it in the data server files.. is't also possible in rAthena?.. because i can't find where to change it..
  22. I want my admin account to be in normal suit or not using a GM suit?.. where can i find the location on how to remove it?
  23. so helpful and the guide is easy to follow.. -- SOLVED --
  24. - Ok let me try this.. thanks for quick response
×
×
  • Create New...