Jump to content

darking123

Members
  • Posts

    931
  • Joined

  • Last visited

Everything posted by darking123

  1. HI everyone I would like to request for the hex code for anti shake(critical explosion) for the client date 20100730 thank you
  2. how to fix blank page when going to Modify Preferences. admin or normal account doesn't work. it just shows blank white page
  3. //===== rAthena Script ======================================= //= Banker Script //===== By: ================================================== //= Syrus22 (1.0) //===== Current Version: ===================================== //= 2.0 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= An account wide Banker to store Zeny //===== Additional Comments: ================================= //= Syrus22 - There's an optional transaction fee at the top of //= the script. To use it simply change the first set command //= to set the cost variable to whatever you want the fee to be. //= Version 2.0: Optimized and brought the script up to standard. [Jguy] //============================================================ prontera,100,84,5 script Banker 109,{ set @cost,500; mes "[Banker]"; mes "Welcome to the First Bank of Prontera. How can I help you today?"; next; switch(select("I'd like to make a deposit.:I'd like to make a withdrawl.:What's my current balance?:Cancel")) { case 1: mes "[Banker]"; mes "Very well... How much would you like to deposit? The maximum you can deposit at once is 999,999 Zeny."; next; if (@cost > 0) { mes "[Banker]"; mes "Oh, and do realize there is a " +@cost + " Zeny charge on all transactions!"; next; } input @deposit; if (@deposit < 1) { mes "Make sure you ask me to deposit a real amount."; close; } else if (@deposit > Zeny) { mes "It does not appear like you have the amount of zeny you're trying to deposit!"; close; } else if (@deposit > (Zeny - @cost)) { mes "You need " + @cost + " Zeny to cover the transaction fee!"; close; } else { set Zeny,Zeny - @deposit; set Zeny,Zeny - @cost; set #bankstorage,#bankstorage + @deposit; mes "[Banker]"; mes "Thank you very much... Your zeny is in good hands."; close; } case 2: mes "[Banker]"; mes "Very well... How much would you like to withdraw? The maximum you can withdraw at one time is 999,999 Zeny"; next; if (@cost > 0) { mes "[Banker]"; mes "Oh, and do realize there is a " +@cost + " Zeny charge on all transactions!"; next; } input @withdrawl; if (@withdrawl < 1) { mes "Please don't play games. I need a real amount to withdraw."; close; } else if (@withdrawl > #bankstorage) { mes "You only have ^00FF00" + callfunc("F_InsertComma",#bankstorage) +"^000000 zeny in your account!"; close; } else if ((@cost > Zeny) && ((Zeny + @withdrawl) > @cost)) { mes "[Banker]"; mes "You don't have the Zeny for the transaction fee right now. Would you like me to take the fee directly from your withdrawl?"; next; switch(select("Yes please.:No, Thanks")){ case 1: mes "[Banker]"; mes "Removing " + @cost + " from your withdrawl to cover the deposit fee..."; set @withdrawl,@withdrawl - @cost; set #bankstorage,#bankstorage - @cost; set @cost,0; next; set Zeny,Zeny - @cost; set Zeny,Zeny + @withdrawl; set #bankstorage,#bankstorage - @withdrawl; mes "[Banker]"; mes "There's your Zeny. Have a good day."; close; case 2: mes "[Banker]"; mes "Very well... come again soon."; close; } } else { set Zeny,Zeny - @cost; set Zeny,Zeny + @withdrawl; set #bankstorage,#bankstorage - @withdrawl; mes "[Banker]"; mes "There's your Zeny. Have a good day."; close; } case 3: mes "[Banker]"; mes "Hmmmm... let me check some paper work."; next; mes "*Rustle, Rustle*"; next; mes "[Banker]"; mes "You currently have " + callfunc("F_InsertComma",#bankstorage) + " Zeny in your account."; close; case 4: mes "[Banker]"; mes "Very well... come again soon."; close; } } prontera,131,190,1 duplicate(Banker) Banker#1-1 109 morocc,141,100,1 duplicate(Banker) Banker#1-2 109 payon,200,106,1 duplicate(Banker) Banker#1-3 109 I am requesting that add the bank log. where deposit and withdrawal of zeny would be log
  4. What to hex in the client date 2010-07-30 to enable character creation until 9?
  5. I'm looking forward for the fix of this problem
  6. in doing the job change from acolytye going to monk ratemyserver indicates that If you are at job level 50, you will not be required to do this test. He will tell you to go directly to Touha. But even if I'm already job level 50. I still need to take the long quest. Can anyone confirm this.
  7. how to fix it even if i'm not remove the yellow name?
  8. How to delete item in the database using sql command if the item is worn in the costume tab?
  9. is it ok to disable the script quests_airship.txt? if i disable it will it prevent the airship to keep on going? or the invasion will just stop?
  10. how to fix Unexpected error occurred. (Err no. 1)
  11. I've been looking for 2010-07-30 lua files but I can't find any. When i run my client using grf an error occur I don't know if the problem is with my lua files? could anybody help me
  12. when I used the auto job changer sometimes my status icon doesnt show up. I need to use @refresh before it appears. how to fix it
  13. i am requesting for the file for this vermillion skill effect http://www.youtube.com/watch?v=aHXzDEu_Thk
  14. Doc/item_bonus.txt you can find it everything there
  15. here sir/mam https://github.com/rathena/rathena/commit/f46a792 the - red one(means you should delete it) the + green one(means youll add it)
  16. i'm not sure maybe this one announce "Hougyoku I am now free, Thanks to "+strcharinfo(0)+" I shall now bestow on him great power!",8; sleep 500; announce "Attention all of Rune Midgard "+strcharinfo(0)+" has just become the Ultimate Warrior and Gained the Sealed Gloom Card.",8;
  17. your 1 tcg be converted to 1 donation credit?
  18. this http://rathena.org/board/topic/71444-novice-suit/ http://rathena.org/board/topic/56709-a-suit-that-can-change-a-character-sprite/ http://rathena.org/board/topic/60269-novice-suit-sprite/
×
×
  • Create New...