Leaderboard
Popular Content
Showing content with the highest reputation on 09/26/13 in all areas
-
File Name: Advanced Bank with nearly unlimited maximum balance File Submitter: DeadlySilence File Submitted: 06 Jun 2013 File Category: Utilities Content Author: DeadlySilence This is my bank NPC which I made since I couldn't find any bank that can store huge amounts of Zeny. Special Credits: Thanks to Anakid for the great idea to implement an @bank command. The NPC supports the following features: Deposit Withdraw Transfer Zeny to other player's bank accounts (by name or account id) Password protection Transaction log (deposits, withdrawals, incoming and outgoing transfers) daily interest (every morning at 6 o'clock server time, default: 5%, can be changed) maximum amount per process is only determined by the server's input_max_value and the script's .maxInput vast amounts of Zeny can be stored (the MySQL column is BigInt, so you can store up to 18,446,744,073,709,551,615 Zeny, that's more than 18,000,000,000 deposits of 1,000,000,000 Zeny) other features are planned and I take feature requests, if I think they make sense (you can ask directly in the thread, but I prefer private messages or emails [address provided in both scripts]) The @bank command supports the following features: the same as the NPC, but more versatile higher limits (as it is not connected to the input_max_value, default value per process is 1,000,000,000 Zeny) shortcuts for @bank <function> commands: @info, @deposit, @withdrawl, @transaction, @password The @bankadmin (exclusively for admins) command supports the following features: @bankadmin <option> returns the current value of an option @bankadmin <option> <value> sets the value of an option Valid options are name, maxinput, maxzeny, interest, whereas name must be a string and the other three have to be integers. The name can also be written with a colour code (like "@bankadmin set name "^F68712Banker^000000"" [please note the the ^000000 after the NPC's name to make the text after the name black again]) You need to read the README.txt file to get the database creation commands and some basic information on how to install the script. Changelog: Downloads:2 points
-
Briefing & Concept Hello folks! you guess it right, it's time of Olrox free releases! I know it has been a while that due to a lot of things happening, I was not able to be active as I was before into map showcases. In fact, I have tons of map works to finish that I hope they will be out very soon. But now I'm back into map stuff and cause of this I want to share a free release among all of you; with the quality you already know! The last free prontera I shared was This Botanic Garden Prontera which has already the insane amount of 5,600+ downloads! making it the map most popular and downloaded in all time in rAthena. I hope this pack of not only one .. I mean 4 prontera seasons is gonna be a success too! About this Free Release 19-September/2013 Added the Fall Season 03-September/2013 Added the Summer Season of this pack! 29-August/2013 This pack of 4 prontera season is gonna be in showcase beginning by this day. Every 3 or 5 days I will update this thread showing another new season waiting of course of your nice welcome of this release before. We will begin with summer. This pack of prontera seasons has the intention to -preserve- the original style of Prontera, but improving it. This means, it was done by the main purpose of being a discreet and not excessive edition for servers which tends to have users that likes the old prontera behavior. Summer is about trees with some yellowish tones... kinda an semi arid place, that you can sense that the sun is hard. Video ... watch it in HD 720p! Video of this release will come at the time the 4 seasons are in showcase. Also I have to say in advance that these prontera seasons have a neat new feature in mapping that I'm sure you will love! HD Screenshots Panoramic Fall Screenshot 1 Shows the Fall prontera at a panoramic center view. As you can see, the King tristan statue is replaced by a new one from the game of Ragnarok Gate of The World. The main plaza is different on this season. Detailed Fall Screenshot 1 Floor on both sides is different on this Fall season. Panoramic Fall Screenshot 2 Its the north area of this place. Panoramic Fall Screenshot 3 Shows another angle of the center are of this Fall season. Panoramic Spring Screenshot 1 Shows the spring prontera at a panoramic center view. As you can see, the King tristan statue is replaced by a new one from the game of Ragnarok Gate of The World. The main plaza is different on this season. Detailed Spring Screenshot 1 Floor on both sides is different on this Spring season. Panoramic Spring Screenshot 2 Its the north area of this place. Panoramic Spring Screenshot 3 Shows another angle of the center are of this Spring season. Panoramic Summer Screenshot 1 Shows the summer prontera at a panoramic center view. As you can see, the King tristan statue is replaced by a new one from the game of Ragnarok Gate of The World. The Prontera Flags are taken by the game of Ragnarok 2 Legend of the second, editing the original rsm models of the lamps and making them with more altitude. Perspective Summer Screenshot 2 A custom angle that tends to shows map in a neat way. Detailed View Summer Screenshot 3 Shows the style of the floor + trees. All of the floors of these prontera seasons are different and in this summer season, the floor looks for the -stoonish- style of prontera + some vibes and yellowish tones. The trees are not from Ragnarok, they are from Dragonica Online. Download Link Download is ready! As everytime I only ask one simple thing from the community at everytime I do releases: Support! Lets make this thread popular, all I need is your feedback to reach this:[/url] A comment is totally appreciated A thumb up reputation is nice too A topic rating is a nice gesture.[/url] Following my Facebook will keep you up to date of my last map works ---> https://www.facebook.com/OlroxMaps Those are the ways you can support this release. Honestly I hope this pack will have tons of downloads. Thanks guys and good day to everyone!1 point
-
[spoiler=Old topic name = Utility: Simple Enchant Crafting Tool]- script Armor Enchanting Tool -1,{ OnInit: npctalk "Powerful Enchanting Tool is Opened"; //OnInit: is needed for the script to work! } function script EnchMenu { getitem 17514,1; switch(select("[Enchant]:[Nothing]")) { Case 1: callfunc "ArmorEnchant"; next; Case 2: dispbottom "Nothing"; end; } } function script ArmorEnchant { setarray .@blacklist,2307,2308,2309,2310; // Input items you wanted to ban setarray .rate, 40,30,20,10; // rate of getting +1 is 40%, +2 is 30%, +3 is 20%, +4 is 10% .item_id = 7227; // item ID requirement use to enchant setarray .item_req, 3,5,7; // require 3 items to make 1st enchant, 5 items to make 2nd enchant ... while ( .rate[.@i] ) { .totalchance = .totalchance + .rate[.@i]; .@i++; } mes "[^0000FFArmor Enchant^000000]"; mes "Do you want to Enchat your ^0000FFArmor^000000?"; next; if ( select ( "Yes", "No" ) == 2 ) close; mes "[^0000FFArmor Enchant^000000]"; if ( !getequipisequiped( EQI_ARMOR ) ) { mes "You dont have any ^0000FFArmor^000000 that is being equipped."; close; } .@id = getequipid( EQI_ARMOR ); .@ref = getequiprefinerycnt( EQI_ARMOR ); .@card1 = getequipcardid( EQI_ARMOR, 0 ); .@card2 = getequipcardid( EQI_ARMOR, 1 ); .@card3 = getequipcardid( EQI_ARMOR, 2 ); .@card4 = getequipcardid( EQI_ARMOR, 3 ); set .@b,getarraysize(.@blacklist); for ( .@c = 0; .@c < .@b; .@c++ ) { if (isequipped(.@blacklist[.@c])) { mes "Its forbidden to enchant "+getitemname(.@blacklist[.@c])+"."; close; } } if ( .@card1 == 255 || .@card1 == 254 ) { mes "I can't enchant a signed equipment."; close; } if ( !.@card4 ) .@enchant = 0; else if ( !.@card3 ) .@enchant = 1; else if ( !.@card2 ) .@enchant = 2; else { mes "Sorry, this ^0000FFArmor^000000 has already been enchanted 3 times."; close; } if(countitem(.item_id)< .item_req[.@enchant]) { mes "Sorry, you need "+ .item_req[ .@enchant ] +" "+ getitemname( .item_id ) +" to enchant this armor."; close; } .@rand = rand(.totalchance); while ( ( .@rand = .@rand - .rate[.@r] ) >= 0 ) .@r++; .@o = rand(0,5); // orb of str/int/dex ... delitem .item_id, .item_req[ .@enchant ]; delitem2 .@id, 1,1, .@ref, 0, .@card1, .@card2, .@card3, .@card4; if ( !.@card4 ) getitem2 .@id, 1,1, .@ref, 0, .@card1, .@card2, .@card3, 4700 + .@o * 10 + .@r; else if ( !.@card3 ) getitem2 .@id, 1,1, .@ref, 0, .@card1, .@card2, 4700 + .@o * 10 + .@r, .@card4; else getitem2 .@id, 1,1, .@ref, 0, .@card1, 4700 + .@o * 10 + .@r, .@card3, .@card4; equip .@id; mes "Armor Enchancement successful !"; close; return; } ///////////////////////////////////////////////////////////////////////// //---------------------------------------------------------------------// // COSTUMIZE ME - ENCHANTER // // AUTHOR: LIL TROLL//COLDFIRE // //---------------------------------------------------------------------// // RATHENA SCRIPT // //---------------------------------------------------------------------// // Version alpha v.1 // //---------------------------------------------------------------------// // REFERENCE: // // http://rathena.org/board/topic/61734-custom-enchantment-system // // Credits to: Kenedos(Copied some Features and Scripts) // // - Karazu for requesting the script. // // CORE SCRIPT: // // - Done // // - MODE: // // - Normal Mode - Done // // - VIP - Work in Progress // // - Special - Work in Progress // // FEATURES: // // - Can add blacklist of items. // // - Enable/Disable/Change npc zeny cost of enchanting. // // - Pick between 1 or 3 slot of enchanting. // // - Enable/Disable enchant overiding. // // - Customizable ItemID/Amount of requirements. // // - Customizable per slot success rate. // // - Progressbar(DONE) VS Cutin(WIP) effect when enchanting. // // - Selectable enchanting modes. // // - Equipment restriction toggle. // // - Customizable Stones/Orbs to be inserted in armor. // //---------------------------------------------------------------------// ///////////////////////////////////////////////////////////////////////// [spoiler=To do:]- Adding one orb/stone type per armor enchant toggle. (Prevent imbalance usage of enchant.) - Adding Special/Donator/Vip Mode - Adding more stuffs per suggestions, I really would like to make it very customizable. Its because it was taking too much time making this script(not yet have enough time to finish the script, lots of work to do and other stuff.) I release alpha version of the script, so at the meantime atleast anyone can help me find error and bugs for faster development while i can only do scripting in little time, or everyone can help me modify and update the script(that would be great!). Please do suggest for room of improvement or new features. Thanks! enchantment.txt1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
after i encrypt my grf, but my grf is not working i'm using "grfbuilder-0.1.30" i need a grfbuilder v2.0? Fixed! after niyo i encrypt wag niyo na gagamitin yung dating client, yung bagong client mula sa encrypting.1 point