Jump to content

skymia

Members
  • Posts

    296
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by skymia

  1. in this line can i make like this? set .TicketID,501,502,503; set .TicketQT,2,2,2;
  2. ok sir i will try this later i will let you know if working now...thanks sir
  3. what if multiple and amount of item need for requirements? and i want to warp in thanatos dungeon
  4. did anyone have a guide on reducing it already?
  5. How to make a npc quest warper to warp in a specific dungeon with require some items? Example: npc location prontera if you click the npc it will ask a item before warping in that map and if the item not complete npc will tell lack of items come back later if you give me the items i need
  6. How to remove Doram race in char creation? i already disabled in nemo but when i try to use my custom client it would not login my account...my server is already online but when i use the client that the hosting provides its working but the doram is enabled...i want to remove it
  7. Can anyone help me in item combo set? Example: if i equipped all of those item i can have additional stats, buff or effect...its like dragon nest on completing a full set armors and weapons If thers's 1 or 2 more items that players not yet have you will not recieve the additional stats, buff or element effect Items: Dragon armor, manteau, shield, shoes Valk helm, valk wings, dragon aura
  8. how to use .diff in rathena?
  9. is this script only 2 guild can join the KOE per event?
  10. i think the item that im looking are not in his collection sir
  11. Anyone have this wing recoloured? Im looking for color Brown, Black, blue, cyan, gold, green, yellow, red, white I already have original,black and red dragon wing
  12. how to add the map on zombie and maze? can anyone help me?
  13. //===== rAthena Script ======================================= //= The 2nd Bank of Prontera (with daily 0.01% income!) //===== By: ================================================== //= Lupus (1.0) //===== Current Version: ===================================== //= 1.2a //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= A bank which has an interest % //===== Additional Comments: ================================= // Look for this formula and setup your Bank daily % interest // #kafrabank/1000 = 0.1% of interest per day // #kafrabank/100 = 1% of interest per day // #kafrabank/10 = 10% of interest per day // // 1.1 Added log of bank operation -> logmes "some info"; // 1.2 Set max income to 100,000z. It would help to avoid // zeny exploits when you change DATE at your server // 1.2a Corrected bad duplicate names. (bugreport:921) [Samuray22] //============================================================ - script Bank Clerk::bankg 833,{ mes"[Maniss]"; mes strcharinfo(0)+", welcome to the Bank of Prontera!"; set @kb_int,(gettime(DT_MONTH)*31)+gettime(DT_DAYOFMONTH); //today's number set @income,0; //calculate % if (#kafrabank<=0 || #kb_int>=@kb_int) goto L_NoIncomeToday; set @income,(#kafrabank/1000)*(@kb_int-#kb_int); //@income == % of the sum //max income constant: if (@income>100000) set @income,100000; L_NoIncomeToday: set #kb_int,@kb_int; //reset days timer if(#kafrabank==0) mes "We could open you an account."; if(@income>0) mes "Today's income: ^135445" + callfunc("F_InsertComma",@income) + "^000000 zeny."; set #kafrabank,#kafrabank+@income; if(#kafrabank>0) mes "Your account: ^135445" + callfunc("F_InsertComma",#kafrabank) + "^000000 zeny."; mes "What would you like?"; next; if(#kafrabank==0) menu "-Open an account",-,"-Quit",B_EXIT2; if(#kafrabank>0) menu "-Deposit money",-,"-Withdraw money",M_WITHDRAW,"-Quit",B_EXIT2; mes"[Maniss]"; mes "Please, tell me how much zeny you would like to deposit."; next; if(input(@kafrabank) == 1) goto L_TOO_BIG_AMOUNT; if(@kafrabank<1000) goto L_LESS_1000; if(@kafrabank>zeny) goto L_NOT_ENOUGH; set Zeny, Zeny-@kafrabank; set #kafrabank,#kafrabank+@kafrabank; mes"[Maniss]"; mes "You've made a deposit of ^135445" + callfunc("F_InsertComma",@kafrabank) + "z^000000."; //we log these zeny operations into the log db logmes "Bank %: " + @income +"z, Deposit: "+ @kafrabank +"z, Final: "+ #kafrabank +"z"; goto B_EXIT; M_WITHDRAW: if(#kafrabank==0) goto L_ZERO_ACCOUNT; mes"[Maniss]"; mes "Your account: ^135445" + callfunc("F_InsertComma",#kafrabank) + "^000000 zeny."; mes "How much zeny would you like to withdraw?"; next; if(input(@kafrabank) == 1) goto L_TOO_BIG_AMOUNT; if(@kafrabank<1) goto B_EXIT2; if(@kafrabank>#kafrabank) goto L_NOT_ENOUGH; set #kafrabank,#kafrabank-@kafrabank; set Zeny, Zeny+@kafrabank; mes"[Maniss]"; mes "Here is your ^135445" + callfunc("F_InsertComma",@kafrabank) + "z^000000, put your sign here..."; //we log these zeny operations into the log db logmes "Bank %: " + @income +"z, Withdraw: "+ @kafrabank +"z, Final: "+ #kafrabank +"z"; goto B_EXIT; L_NOT_ENOUGH: mes"[Maniss]"; mes "You don't have enough zeny for this operation."; next; goto B_EXIT2; L_ZERO_ACCOUNT: mes"[Maniss]"; mes "You don't have any zeny on your account!"; next; goto B_EXIT2; L_TOO_BIG_AMOUNT: mes"[Maniss]"; mes "Sorry. The maximum deposit you can make on a time is 10,000,000 zeny."; next; goto B_EXIT2; L_LESS_1000: mes"[Maniss]"; mes "We're sorry, the minimum amount of zeny you can deposit is 1,000 zeny."; next; goto B_EXIT2; B_EXIT: mes "Very well... Come again soon!"; next; B_EXIT2: mes"[Maniss]"; mes "Thank you for using our Bank Service. We hope to see you again soon."; close; } prontera,131,190,1 duplicate(bankg) Bank Clerk#1-1 833 geffen,125,73,3 duplicate(bankg) Bank Clerk#2-1 833 izlude,145,107,1 duplicate(bankg) Bank Clerk#3-1 833 morocc,147,84,7 duplicate(bankg) Bank Clerk#4-1 833 How to change the maximum deposit in this kafra bank? because right now is 10M is the maximum deposit.. thanks in advance
  14. why use @autotrade command if you want afk while in vending mode
  15. ok sir thanks for the info again
  16. ohh ok sir thnks for the info.. what is better to use? 2014-10-22b or 2013-12-23c
  17. 2014-10-22b This Client in char creation does doram support?
  18. I will try this wing in every char so that i will restrict the item to the char that not fits it... But is there a way i can resize the sprite to make looks good in every class?
  19. Ohh sorry sir for wrong section... So there's no way to fix the zoom bug?
  20. can anyone help how to align this sprite?
  21. Woah thats too much money for that custom classes haha
×
×
  • Create New...