Jump to content

WhiteEagle

Members
  • Posts

    489
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by WhiteEagle

  1. Hey guys, I saw on some screens, that kro has an ingame cash-shop. Some other private-server got this function too. Now I wanted to know, hot I can add it/hex it my client or which exe already contain it. Thanks advance.
  2. Sry for the stupid question, but have you add your custom Quest in the quest_db.txt at rAthena?
  3. Huh? What have my topic to do with Olrox Maps? o.O
  4. Hm.. it was now the 1000+ same question? :/
  5. @delay with Ygg,Yggseeds, you need to write in at item_delay.txt like "607,5000 // Yggdrasil_Berry" It will have now 5 seconds delay. You will find the file in the folder: db/ @warp/go delay: http://rathena.org/b...o-damage-delay/ @warp/go revice: It's like "respawn". If you want that player can't use @go if they're died, use this http://rathena.org/b...en-player-died/ @WoE/Emp: I don't understand what you want o.O The Emperium is on hide, if WoE is inactive.
  6. Version 1.0

    702 downloads

    A short and simple script named "LevelUpBox". Easy to change the item which will gain the player by: set .@item$,501; // Level 1 with Item "Red Potion"; Function: Every 10 level-up the player will gain an item.
    Free
  7. @Najara Many many thanks. Yea, it was Snowflakes first "Town" map with this size. It is a nice idea for the next update on this map or for the new maps, to add more terrain height~ We will heed your advice. It's nice to hear it from you. (Zeer aardig van je ^-^)
  8. Many thanks for your command. The Minimap with a bigger size inclusive a detailed information where you can find the explicit locations will come soon. And a video of the whole map too. Edit: Mini-Map added to the first post.
  9. I'm here to present one of our maps from Delphin-Project. The map was created by Snowflake~ Please rate it ^-^ We hope you like it EDIT: Mini-Map added for an overview. The center of Algaia! GameMaster Area(House) Rental Houses (Normal) Rental House (Guild) Vending Area Our wishing Well The Churchyard Wedding Area Wich House Colosseum Villagers Beach Area China Town Airport
  10. The standart "Seal Quests" contains the rAthena. npc/quests/seals/ My tip: search in "brisingamen_seal.txt" "megingard_seal.txt" "mjolnir_seal.txt" "sleipnir_seal.txt" for if ($God1 < 100) set $God1,$God1 +1; and change it to if ($God1 < 100) set $God1,$God1 +10; Now your player need only complete 40 Quests and not 400 to have all seals at 100! Ah, and here for searching: Sleipnir = $God1 Megingjard = $God2 Brisingamen = $God3 Mjolnir = $God4
  11. It's work with SQL. I like this script.^^ (I have no lags and I'm using this time only a vps) Btw, where you got your Flux Theme?^^
  12. Hm, I'm sorry that you have lags. Then I have luck that I havn't it.^^ Maybe this will help you more. It's a bit more complex: http://rathena.org/board/topic/64199-woe-setter-v-345/
  13. [/code]I don't know, what we do without you Emistry. It make me happy, that I learned today new stuff. Thanks (It works exactly how I wanted it.) @Emistry: Yea, I have seen that. ^-^ But thanks. <3 And I need to change this: mes ""+.Name[.@i]+" - Fame : "+.Fame[.@i]; to mes ""+.Name$[.@i]+" - Fame : "+.Fame[.@i];
  14. Look Eupys "Script Collection". Here a shortlink from him: http://rathena.org/b...&attach_id=2873 or https://rathena.svn...._controller.txt
  15. @Aleos Thanks. I changed it now like this: algaia,205,161,4 script Test Rank 100,{ mes "[blacksmith Ranking]"; query_sql "SELECT `fame`,`name` FROM `char` WHERE `fame`>0 AND (`class`='10' OR `class`='4011' OR `class`='4033' OR `class`='4058' OR `class`='4064' OR `class`='4100') ORDER BY `fame` DESC LIMIT 0,1", .@fame$, .@name$; query_sql "SELECT `fame`,`name` FROM `char` WHERE `fame`>0 AND (`class`='10' OR `class`='4011' OR `class`='4033' OR `class`='4058' OR `class`='4064' OR `class`='4100') ORDER BY `fame` DESC LIMIT 1,2", .@fame2$, .@name2$; query_sql "SELECT `fame`,`name` FROM `char` WHERE `fame`>0 AND (`class`='10' OR `class`='4011' OR `class`='4033' OR `class`='4058' OR `class`='4064' OR `class`='4100') ORDER BY `fame` DESC LIMIT 2,3", .@fame3$, .@name3$; mes "======================="; mes "Top 1 Blacksmith"; mes ""+ .@name$ +" with fame of: "+ .@fame$ +"."; set rank,1; mes "======================="; mes "Top 2 Blacksmith"; mes ""+ .@name2$ +" with fame of: "+ .@fame2$ +"."; set rank,2; mes "======================="; mes "Top 3 Blacksmith"; mes ""+ .@name3$ +" with fame of: "+ .@fame3$ +"."; mes "======================="; set rank,3; close; OnPCLoginEvent: if(rank == 1){ atcommand "@aura 701"; dispbottom "You are on the first place."; } if(rank == 2){ atcommand "@aura 701"; dispbottom "You are on the second place."; } if(rank == 3){ atcommand "@aura 701"; dispbottom "You are on the third place."; } end; } My problem is now, how to set set rank,1; , set rank,2; and set rank,3; each ppls without talking the npc. If I speak with the npc, I get the set rank,3; I need it to get automatic. X_X Sry for my english.
  16. It work perfectly. Thank you and thanks at all. I will try now, to add the first 3 ppls the "freeloop(bonus bLuk, 3;);" bonus per "OnPCLoginEvent:"
  17. Wow nice. Thank you. I have test it now and added some own changes that it work. (.@name$ and .@fame$) algaia,205,161,4 script Test Rank 100,{ mes "[Ranker]"; mes "Which ranking you want to see?"; next; switch(select("Blacksmith:Alchemist")){ case 1: query_sql "SELECT `fame`,`name` FROM `char` WHERE `fame`>0 AND (`class`='10' OR `class`='4011' OR `class`='4033' OR `class`='4058' OR `class`='4064' OR `class`='4100') ORDER BY `fame` DESC LIMIT 0,3", .@fame$, .@name$; for( set .@i,0; .@i < 3; set .@i,.@i + 1 ) { mes "======================="; mes "Top 1 Blacksmith"; mes .@i + 1 + ". " + .@name$ + " with fame of: " + .@fame$ + "."; mes "======================="; mes "Top 2 Blacksmith"; mes .@i + 1 + ". " + .@name$ + " with fame of: " + .@fame$ + "."; mes "======================="; mes "Top 3 Blacksmith"; mes .@i + 1 + ". " + .@name$ + " with fame of: " + .@fame$ + "."; mes "======================="; close; } My problem is now, only one person will be displayed.
  18. Hm yea, you're right. But special thanks that you try it. You do a nice job.
  19. Something like this I searching, but nothing found. Many thanks that you try to help me. I hope you find a solution.
  20. Thanks for your answer. Thats help me much. But the question is, how I can do that the npc display the ranking. Example: I don't know the value to check this. Sorry for my questions. x_X
  21. Hi guys, know anyone how to script a npc, which display the /blacksmith and /alchemist ranking. Because I want give the first 3 ppls a bonus effect. Like: if (blacksmithrank == 3) { He got a luck bonus of 3 } if (blacksmithrank == 2) { He got a luck bonus of 4 } if (blacksmithrank == 1) { He got a luck bonus of 5 } Thanks in advance.
  22. Very nice. Thank you very much. Yea, it would be nice. Like Teakwon kicks xD
  23. Ansich wäre ich ebenfalls dafür. Ich bin schon seit ner Zeit dabei für mich persönlich alles zu übersetzten. Viele sagen, dies wäre unmöglich etc.~, kann ich nicht bestätigen. Natürlich (seh ich zumindest so), sollte Vorraussetzung sein, das man die deutsche Sprache beherrscht, damit nicht so ein kuddelmuddel wie damals in der gAthena passiert. Dies wird ziemlich schwer wenn alles open ist und jeder sein Teil hinzufügen kann. So muss man ja doch nochmal drüber schaun usw.. Ansich wäre dies aber ein guter Anfang. Immerhin bieten mitlerweile viele Multi-Language an. Sind zwar meist nur die Offi-Server, aber das sollte uns rAthena Member nicht weiter aufhalten, oder? Sicher wird die rAthena dann um einiges größer werden. Na und? Zur Zeit ist glaub eine clean-rAthena 75-80MB groß? Das ist nix. Aion Emulator als Beispiel sind weit über 400MB groß. Noch nie eine Beschwerde dahingehend gelesen. ^-^ Zumal, diejenigen die dann das Multi-Language rAthena zu groß finden und zu wenig Leistung besitzen, die können ja immernoch auf die normale rAthena ausweichen.
  24. Nobody knows any solution?
×
×
  • Create New...