-
Posts
95 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Lugia
-
Where i could get that lua files?
-
Packet Problem is solve Language is still in korean ...
-
Im sorry, Ive stop developing for almost a year and forget a lot. Hahaha. Yeah I receive error unsupported packets. [info]: clif_parse: Disconnecting session#3 with unknown packet version <p:0x464d, l:19>
-
Hello, rAthenians. I am a former developer of eAthena and decided to transfer here. Having a problem with the client. 2. Having a problem with data folder, When creating a new character it should be in english or use the old one 3. Having a problem when logging in into the server, it keep saying reject to the server. What would be the problem with this? I finish editing mmo.h #ifndef PACKETVER #define PACKETVER 20120410 //#define PACKETVER 20130320 //#define PACKETVER 20111116 And packet db set to default. And my clientinfo.xml : <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>korea</servicetype> <servertype>sakray</servertype> <connection> <display>Ragnarok Online</display> <balloon></balloon> <desc>]</desc> <address>127.0.0.1</address> <port>6900</port> <version>25</version> <langtype>1</langtype> <registrationweb>127.0.0.1</registrationweb> <aid> <admin>2000000</admin> <admin>2000001</admin> <admin>2000002</admin> </aid> <loading> <image>loadingscreen01.jpg</image> </loading> </connection> </clientinfo> Do I have to change the version or langtype?
-
Do I have to add // to the others? or its enough for this only? #define RENEWAL // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder #ifndef _CONFIG_RENEWAL_H_ #define _CONFIG_RENEWAL_H_ /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ /** * @INFO: This file holds general-purpose renewal settings, for class-specific ones check /src/config/classes folder **/ /// game renewal server mode /// (disable by commenting the line) /// /// leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL /// renewal cast time /// (disable by commenting the line) /// /// leave this line to enable renewal casting time algorithms /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats. /// example: /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a /// "fixed cast time" which can only be reduced by specialist items and skills //#define RENEWAL_CAST /// renewal drop rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item drop rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied /// based on the http://irowiki.org/wiki/Drop_System#Level_Factor table //#define RENEWAL_DROP /// renewal exp rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item exp rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied //#define RENEWAL_EXP /// renewal level modifier on damage /// (disable by commenting the line) /// // leave this line to enable renewal base level modifier on skill damage (selected skills only) //#define RENEWAL_LVDMG /// renewal enchant deadly poison algorithm /// /// leave this line to enable the renewed EDP algorithm /// under renewal mode: /// - damage is NOT increased by 400% /// - it does NOT affect grimtooth /// - weapon and status ATK are increased //#define RENEWAL_EDP /// renewal ASPD [malufett] /// (disable by commenting the line) /// /// leave this line to enable renewal ASPD /// - shield penalty is applied /// - AGI has a greater factor in ASPD increase /// - there is a change in how skills/items give ASPD /// - some skill/item ASPD bonuses won't stack //#define RENEWAL_ASPD #endif // _CONFIG_RENEWAL_H_
-
Hello, I am not familiar with rAthena, so I'd like to know on how to disable all renewal features? Im going to create a server with rAthena files but only basis is Transcend Class, Need help for this.
-
what is the location of that endless tower?
-
Sql query/script that will delete item to everyone.
Lugia replied to Meister's question in Script Requests
yes of course, and try this one : x,x,x,x script sample 915,{ mes "Hello"; mes "Want to delete items?"; next; mes "Please input item id"; input .@delitem$; if(.@delitem$ == "") goto fail; next; query_sql(DELETE FROM `auction` WHERE `nameid` = '"+.@delitem$+"'); query_sql(DELETE FROM `cart_inventory` WHERE `nameid` = '"+.@delitem$+"'); query_sql(DELETE FROM `guild_storage` WHERE `nameid` = '"+.@delitem$+"'); query_sql(DELETE FROM `inventory` WHERE `nameid` = '"+.@delitem$+"'); query_sql(DELETE FROM `mail` WHERE `nameid` = '"+.@delitem$+"'); query_sql(DELETE FROM `storage` WHERE `nameid` = '"+.@delitem$+"'); next; Mes "Successful!"; close; fail: mes "Invalid Item ID!"; close; } try this script if still not working just message me or comment here asap. -
Sql query/script that will delete item to everyone.
Lugia replied to Meister's question in Script Requests
I guess he's looking for a script? Try to insert this one : Try this in your test server first : Mes "Input Item ID"; input .@delitem$; if(.@delitem$ == " ") goto failed; next; Mes "Deleting Items!"; query_sql(DELETE FROM `auction` WHERE `nameid` = "+.@delitem$+"); query_sql(DELETE FROM `cart_inventory` WHERE `nameid` = "+.@delitem$+"); query_sql(DELETE FROM `guild_storage` WHERE `nameid` = "+.@delitem$+"); query_sql(DELETE FROM `inventory` WHERE `nameid` = "+.@delitem$+"); query_sql(DELETE FROM `mail` WHERE `nameid` = "+.@delitem$+"); query_sql(DELETE FROM `storage` WHERE `nameid` = "+.@delitem$+"); next; Mes "Successful!"; close; failed: Mes "Invalid Item ID!"; close; } I dunno if this code will work but try this first, and tell me the errors, or post some screenshots. -
Setting Mapflags : <map name>%TAB%mapflag%TAB%<flag>%TAB%<extra> Here : prontera mapflag notrade 0 Mapflag Guide
-
Base on my observation : Soldier Skeleton will add only 9 critical multiplied by 3 = 27 { bonus bCritical,9; },{},{} What do you want to do? Kindly provide an accurate information.
-
This code seems will work, try this : sc_start SC_COMMONSC_RESIST,5000,10; Hmm but this is only for potion pitcher, Maybe we tried to create a new function like what emistry mention.
-
Look for the npc script for this, it must be located at your flux-cp and edit some lines. And if you need help on it, kindly paste the npc script here.
-
Do you mean : Eg. Player 1 ( Enemy ) had 4 LOD Cards Player 2 ( Defensive ) Custom Ygg When player 1 attack/hit player 2 ( Yes, we know what will happen ) but When player 2 starts using your custom ygg she/he will become immune to any ailments? Correct me if I am wrong and if Correct okay ill help you.
-
Screen shot please?
-
Trading multiple blue cards for multiple boxes?
Lugia replied to Currently's question in Scripting Support
Do you mean only Blue Cards? Kindly give us more specific information so that we able to resolve your question/s correctly and fast. -
Tnx.
-
Oh nice. Thank you for this. Solved!
-
Anybody willing to help? How to make this available every 12 midnight only? How to enable and disable this? Description : 12 Midnight the npc will be enable. 1:00 AM the npc will be disable 1 hour diff only. NPC Location : prontera,164,175,6 //===== rAthena Script ======================================= //= Slotted Sunglasses Quest //===== By: ================================================== //= amichan //===== Current Version: ===================================== //= 1.8 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Quest to get Slotted Sunglasses. //= Will reset after quest completion. //===== Additional Comments: ================================= //= 1.0 by Aegis 1.1 by aichan 1.2 by x[tsk] 1.3 by Darkchild //= 1.5 Fixed Exploit [Lupus] //= 1.6 Fixed Exploit [KarLaeda] //= 1.7 Relocated 'Maseph' to moc_fild07. [Kisuka] //= 1.8 Cleaning. [Euphy] //============================================================ prontera,164,175,6 script Sunglasses Trader 73,{ mes "[sunglasses Trader]"; if(SG_QUEST1 == 1) { mes "There is nothing more I can tell you."; next; mes "[sunglasses Trader]"; mes "Go see Maseph. She is somewhere north of Morroc."; close; } mes "Hello. What can I do for you?"; next; if(select("I heard that you can make ^0000FFSlotted Sunglasses^000000.:Nothing, sorry to bother you.")==2) { mes "[sunglasses Trader]"; mes "Come back to me than you are ready."; close; } mes "[sunglasses Trader]"; mes "I do not make them, but I can tell you where to find the person who does. For a small fee..."; next; if(select("How much?:No way, I will find her myself!")==2) { mes "[sunglasses Trader]"; mes "Suit yourself, the Maker will not make you ^0000FFSlotted Sunglasses^000000 unless she knows that you are coming."; mes "Only I can tell her you are coming."; next; mes "[sunglasses Trader]"; mes "Come back to me when you have given up. Hahaha..."; close; } mes "[sunglasses Trader]"; mes "In order for me to tell you information on ^0000FFSlotted Sunglasses^000000 you need to get me:"; mes " - ^0000881 Carat Diamond^000000"; mes " - ^00008850 Feathers^000000"; mes " - ^000088100000z^000000"; next; if(select("Alright, here.:That's too much!")==2) { mes "[sunglasses Trader]"; mes "Suit yourself."; close; } mes "[sunglasses Trader]"; if (countitem(730) < 1 || countitem(949) < 50 || Zeny < 100000) { mes "You're missing something. Come back when you've gathered all the materials."; close; } delitem 730,1; delitem 949,50; set Zeny, Zeny-100000; set SG_QUEST1,1; mes "[sunglasses Trader]"; mes "Great. Now, listen carefully."; next; mes "[sunglasses Trader]"; mes "Look for someone named Maseph somewhere north of Morroc."; mes "I will send her a message to let her know that you are coming."; close; } moc_fild07,334,186,5 script Maseph 702,{ mes "[Maseph]"; if(SG_QUEST1 != 1) { mes "Lovely day, isn't it ?"; close; } mes "Hello there."; mes "You came for the ^000088Slotted Sunglasses^000000, right?"; next; if(select("Yes:No, sorry to bother you.")==2) { mes "[Maseph]"; mes "Off you go, then."; close; } mes "[Maseph]"; mes "To make one, I will need one pair of ^000088Sunglasses^000000 and 400000z."; next; if(select("Here you go.:No, thanks.")==2) { mes "[Maseph]"; mes "As you wish."; close; } mes "[Maseph]"; if (countitem(2201) < 1) { mes "I need one pair of ^000088Sunglasses^000000. Come back to me when you have one."; close; } if (Zeny < 400000) { mes "You do not have enough Zeny. Come back to me when you do."; close; } delitem 2201,1; set Zeny, Zeny-400000; mes "Thank you. I will get on it right away..."; next; mes "[Maseph]"; mes "Here you go, my friend."; mes "Enjoy your ^000088Slotted Sunglasses^000000."; getitem 2202,1; set SG_QUEST1,0; close; }
-
I mean this npc : Magic Gear Master? I still seen that npc in prontera. I already restart the server.
-
Where to find the 3rd Class Script? Such as : Magic Gear Quest at Prontera and so on.
-
Hello regarding to your Job Class in All in One NPC, - How to remove the third class option?
-
Great done with everything.
-
Okay Ill try it. I fix my lub already the problem is in the chat box now.