Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/16/14 in all areas

  1. Increased item ID array size! As of 7cd82d0, rAthena is now able to support item IDs up to 65,535! The added benefit is that there is no extra memory consumption for the increased size. By changing the variables to unsigned this removes all the negative values that could never be used. This patch also included a change to CARD0_PET and removed the negative value of it since it's not dependent on the client. @Cydh was able to help and tested clients 2010-07-30 and up and was able to create items successfully over 32k. If you still run a client before 2010-07-30 post your results so I can update this topic! Don't forget to run sql-files/upgrades/upgrade_20140612.sql and sql-files/upgrades/upgrade_20140612_log.sql! Follow ups: 42b29ee 82467e1 98c6aee please run sql-files/upgrades/upgrade_20140616.sql 6c5d4a7
    1 point
  2. Arena PVP Features: 1.Player count in arena room. 2.With 3 different maps ( Prontera, Izlude, Alberta ) 3.Player announce when join room 4.With special effect when join room View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Adding Non Donation Room , Adding Non Buffer Room , Adding Gvg Room ------------------------------------------------------------------------------------------------------------------------------------------- Ingame Second Password Features: 1.Kick from server when insert wrong password 2.Recovery password system 3.Allows you to change your password when you forgot.With conditions must remember the password recovery View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 View Script v1.2 | Download v1.2 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Add ( Freeze & Berserk ) when you Login Version 1.2 ~ Add Recovery Password using email address ------------------------------------------------------------------------------------------------------------------------------------------- Warp NPC Features: 1.Check Coordinate 2.Warp to your friend 3.Ingame setting cost [ GM Menu ] 4.Check warp cost [ GM Menu ] 5.Waitingroom show warp cost View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Adding GM Name Filter ( Disable Warpto GM ) ------------------------------------------------------------------------------------------------------------------------------------------- Locked Kafra Features: 1.Locked Storage 2.Change Locked Password 3.Change Secret Password 4.Allows you to change your password when you forgot.With conditions must remember the secret password View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Fixed Cutin And Adding @Storage ------------------------------------------------------------------------------------------------------------------------------------------- Element Enchant Features: 1.With 7 different element ( Earth, Wind, Water, Fire, Ghost, Shadow, Holy ) 2.Only 1 Element is allow.More than 1 automatic reset buff 3.Easy Config View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Fixed Getstatus command ------------------------------------------------------------------------------------------------------------------------------------------- Coin Exchanger Features: 1.Coin to Zeny 2.Zeny to Coin View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 View Script v1.2 | Download v1.2 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Fixed Coin Count Version 1.2 ~ Fixed getitem ------------------------------------------------------------------------------------------------------------------------------------------- Alice Potion Makers Features: 1.20 different potion you can make 2. Count Success or failed make potion 3.Easy Config View Script v1.0 | Download v1.0 Changelogs: Version 1.0 ~ Script Create Special thank : ~ Ratemyserver.net Potion Creation Item : ~ http://ratemyserver.net/index.php?page=creation_db&op=4 ------------------------------------------------------------------------------------------------------------------------------------------- Fishing Features: 1.Fishing and win a random item 2. Easy Config View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Adding @FShop, @FishShop ( Buy Fishing Tool ) & @FSpot, @FishingSpot ( Warp to Fishing Spot ) ------------------------------------------------------------------------------------------------------------------------------------------- Resurrection Ticket Features: 1.Allows you to alive only using resurrection ticket [ Item ID 7199 ] 2.Easy Config View Script v1.0 | Download v1.0 Changelogs: Version 1.0 ~ Script Create ------------------------------------------------------------------------------------------------------------------------------------------- Renamer Features: 1.Allow you to change your name only using Coupon [ Item ID 7037] 2.With filter name 3.Gm Command @gmrenamer [ Enable Npc & Disable Npc ] View Script v1.0 | Download v1.0 Changelogs: Version 1.0 ~ Script Create ------------------------------------------------------------------------------------------------------------------------------------------- BroadCaster Features: 1.With 35 different color 2. Auto Disable Npc ( Woe Start ) & Auto Enable Npc ( Woe End ) 3. Word Filter 4. Broadcast delay count 5. Easy Config View Script v1.0 | Download v1.0 View Script v1.1 | Download v1.1 Changelogs: Version 1.0 ~ Script Create Version 1.1 ~ Removed Same Color , Auto Disable Npc ( Woe Start ) & Auto Enable Npc ( Woe End ), Word Filter, Broadcast Delay Count. Special Thanks: ~ w3schools.com Hex Color: ~ http://www.w3schools.com/html/html_colornames.asp ------------------------------------------------------------------------------------------------------------------------------------------- Anti Fake GM Features: 1.Kick out the player that uses the same name with GM 2.Easy Config View Script v1.0 | Download v1.0 Changelogs: Version 1.0 ~ Script Create ------------------------------------------------------------------------------------------------------------------------------------------- Term & Condition: ~ You are not allowed to reproduce or make profit of this script ~ You are not allowed to upload my script to any website ~ You are not allowed to remove credit ~ Post here if you found bug ~ Use this Script at your own Risk
    1 point
  3. Autotrade Persistence & Live Vendor Data 27cbc7f brings two major vending features to rAthena. Live Vendor Data All vending data is now stored in SQL tables `vendings` and `vending_items`, making the data easily accessible to third party applications. This makes it possible to display and search through player shops on web pages or control panels without any server modifications. The vending data can also be accessed through scripts, which opens similar possibilities for players to search for shop items. [spoiler=Table Structures:] CREATE TABLE IF NOT EXISTS `vending_items` ( `vending_id` int(10) unsigned NOT NULL, `index` smallint(5) unsigned NOT NULL, `cartinventory_id` int(10) unsigned NOT NULL, `amount` smallint(5) unsigned NOT NULL, `price` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `vendings` ( `id` int(10) unsigned NOT NULL, `account_id` int(11) unsigned NOT NULL, `char_id` int(10) unsigned NOT NULL, `sex` enum('F','M') NOT NULL DEFAULT 'M', `map` varchar(20) NOT NULL, `x` smallint(5) unsigned NOT NULL, `y` smallint(5) unsigned NOT NULL, `title` varchar(80) NOT NULL, `autotrade` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; Autotrade Persistence Vendors in auto-trade mode (@autotrade/@at) will now automatically be logged in after a server restart. In other words, it is no longer necessary for players to re-open their shops following each reboot or maintenance, made possible due to saving of vending data. This feature can be disabled in conf/battle/feature.conf. [spoiler=Options:] // Autotrade persistency (Note 1) // Should vendors that used @autotrade be restored after a restart? feature.autotrade: on // In which direction should respawned autotraders look? // Possible values are from 0-7 // Default: 4(South) feature.autotrade_direction: 4 // Do you want your autotraders to sit? (Note 1) feature.autotrade_sit: yes Credits Thanks to @Lemongrass for coding this update, and @Ind for the original idea. Don't forget to run sql-files/upgrades/upgrade_20140114.sql!
    1 point
  4. File Name: Item Sprite And itemInfo.lua Generator File Submitter: WillyFu File Submitted: 12 Jul 2014 File Category: Spriting & Paletting Tools Content Author: WillyFu Hello!! This is my first Project + Post And yeah it's "Free" Need 2 Day To Make It, Because i don't know exactly the language and i just learn it little bit only(15%) XD Item Sprite Generator Preview itemInfo.lua Generator Preview Thanks For Visiting This Page Download #Sorry For My Bad Language# Click here to download this file
    1 point
  5. /*========================================================= Points to Item Exchanger by Mumbles =========================================================== Request: http://goo.gl/MplDtF =========================================================== Preview: =========================================================== Description: Exchanges items for points and vice-versa at a fixed rate. =========================================================== Compatibility: Optimised for rAthena emulators. =========================================================== Changelog: v1.0 - First version. v1.0.1 - Added changelog. v1.0.2 - Removed reverse transactions. [Missingno] v1.0.3 - Adjusted rates. [Missingno] v1.1 - Compatibilised for rAthena emulators. [Missingno] =========================================================*/ prontera,164,169,3 script Point Exchanger::points2item 871,{ /*----------------------------------------------------- Script -----------------------------------------------------*/ mes .npc_name$; mes "Hello there, ^FF8800"+ strcharinfo(0) +"^000000! "+ "Would you exchange your "+ .points_name$ +" "+ "for "+ .pod_name$ +"?"; mes " "; mes "Exchange Rate: "+ .rate +":1"; mes .points_name$ +": [^FF0000"+ getd(.points_var$) +"^000000]"; next; switch (select(implode(.menu_options$, ":"))) { case 1: mes .npc_name$; mes "Okay, come back if you change your mind!"; break; case 2: mes .npc_name$; mes "Please enter the amount of "+ .points_name$ +" that you want to exchange."; do { mes " "; mes "Input ^0000FF0^000000 to cancel."; next; input .@amount; .@total = .@amount / .rate; // Check break input if (!.@amount) { message strcharinfo(0), strnpcinfo(1) +" : Exchange terminated."; close; } // Check amount against points if (getd(.points_var$) < .@amount) { mes .npc_name$; mes "^FF0000Please enter a valid amount.^000000"; } } while (getd(.points_var$) < .@amount); // Check weight if (!checkweight(.pod_id, .@total)) { mes .npc_name$; mes "^FF0000You're overweight; please store some items.^000000"; break; } setd .points_var$, getd(.points_var$) - .@amount; getitem .pod_id, .@total; mes .npc_name$; mes "You've exchanged "+ .@amount +" "+ .points_name$ +" for "+ .@total +" "+ .pod_name$ +". "+ "You now have "+ getd(.points_var$) +" "+ .points_name$ +" and "+ countitem(.pod_id) +" "+ .pod_name$ +"."; break; } close; /*----------------------------------------------------- Configuration -----------------------------------------------------*/ OnInit: .npc_name$ = "[^0000FFPoint Exchanger^000000]"; .rate = 20; // Exchange rate (rate = 1 PoDs) .pod_id = 7350; // Proof of Donation item ID or constant .pod_name$ = getitemname(.pod_id) +"(s)"; // Proof of Donation item name .points_name$ = "Cash Point(s)"; // Points name .points_var$ = "#CASHPOINTS"; // Points variable // Modifying these options requires updates to the corresponding case setarray .menu_options$[0], "^FF0000>^000000 Cancel", "^0000FF>^000000 Exchange "+ .points_name$ +" for "+ .pod_name$; end; }
    1 point
  6. Men no work in win 8, and no exist support in the future. use a virtual box if you need encrypt
    1 point
×
×
  • Create New...