-
Posts
757 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Everything posted by Dolphin86
-
Hello guys, i seems to have some problem which is example archer figure, when archer char use it it will add up bonus stats, but when the char change to hunter, or sniper the bonus is no longer add up, how can i chg this? like any job from archer job branch will get the bonus? itemdb.txt script : { bonus bDex,5; bonus bAgi,5; if(Class==Job_Archer) bonus bAspdRate,20; },{},{}
-
kalau diff secara default, ya blh ja tak perlu setting apa2, topic ini seharusnya di bahagian bantuan
-
i got this error, can someone who me how to fix?
-
- script autojoin -,{ OnPCLoginEvent: atcommand "@join #main"; atcommand "@join #support"; atcommand "@join #trade"; end; } - script atlantispvp -1,{ OnPCKillEvent: if(strcharinfo(3) == "atlantis") getitem 7812,1; end; } well there are another configure there to force player to join main channel but as you can see i did change it that is basically suppose to be my server custom configure i did try but i got these error: [Warning]: script: buildin_getmapxy: Invalid type 0. [Debug]: Source (NPC): Arena#PCKill (invisible/not on a map) [Warning]: script: buildin_getmapxy: Invalid type 0. [Debug]: Source (NPC): Arena#PCDie (invisible/not on a map) current script: //////////////////////////////////////////// // // // Script by: GM Chatterboy // // Version: 1.0 // // Emulator: Rathena // // // //////////////////////////////////////////// prontera,178,215,4 script Jin Doggo 569,{ emotion e_lv; set .@nome$,"[ ^FF0000Jin Donggo^000000 ]"; mes .@nome$; mes "Hello! ^FFA500 "+strcharinfo(0)+"^000000 what can i do for you today?"; next; switch(select("[^0101DFEnter Atlantis^000000]","[^0101DFTOP 5 PvP^000000]")){ case 1: set $pvp$[0],"atlantis"; mes .@nome$; mes "***********************"; mes "~[^FF0000"+getmapusers($pvp$[$pvp])+"^000000] Player(s) in map..."; mes "***********************"; if(select("Go...:Leave...")==1){ if(BaseLevel<10){ mes "^FF0000Your level is not suite here go kill some poring!^000000"; emotion e_pif; close; }else{ warp $pvp$,0,0; end; } }close; case 2: query_sql "SELECT name, kills, deaths FROM pvp ORDER BY kills DESC LIMIT 10",.@name$,.@kills,.@deaths; if (!getarraysize(.@name$)){ mes .@nome$; mes "The rankings are empty."; close; } mes .@nome$; mes "[TOP 5 PvP]"; mes "-----------------------------------"; mes "^0000FF Position ^000000 Name ^FF0000 Win ^000000 ^800080 Knock-Out ^000000"; mes "-----------------------------------"; for(set .@i,0;.@i<=4;set .@i,.@i+1) { mes "^0000FF["+(.@i+1)+"] ^000000 "+.@name$[.@i]+" .....^FF0000"+.@kills[.@i]+" ^000000 ^800080"+.@deaths[.@i]+" ^000000"; } close; } } //============================================================================================================================================= - script Arena#PCKill -1,{ OnPCKillEvent: if(BaseLevel>=400) end; getmapxy @map$,@x,@y,0; if (@map$ == "atlantis"){ set @CID,getcharid(0); set @name$,""; set @points,0; query_sql "SELECT `kills` FROM `pvp` WHERE `char_id`="+@CID+"",@points; query_sql "SELECT `name` FROM `pvp` WHERE `char_id`="+@CID+"",@name$; if ( @name$ == "" ) { query_sql "INSERT INTO `pvp` (`char_id`,`name`,`kills`) VALUES ("+@CID+",'"+strcharinfo(0)+"',1)",@esc$; dispbottom "Kills + 1 "; end; } query_sql "UPDATE `pvp` SET `kills` = `kills` +1 WHERE `char_id`="+@CID+"",@esc$; set @points,@points+1; dispbottom "Kills: "+@points; getitem 604,1; } end; } //======================================================================================================================================================== - script Arena#PCDie -1,{ OnPCDieEvent: if(BaseLevel>=400) end; getmapxy @map$,@x,@y,0; if (@map$ == "atlantis"){ set @CID,getcharid(0); set @name$,""; set @points,0; query_sql "SELECT `deaths` FROM `pvp` WHERE `char_id`="+@CID+"",@points; query_sql "SELECT `name` FROM `pvp` WHERE `char_id`="+@CID+"",@name$; if ( @name$ == "" ) { query_sql "INSERT INTO `pvp` (`char_id`,`name`,`deaths`) VALUES ("+@CID+",'"+strcharinfo(0)+"',1)",@esc$; dispbottom "Kills : 1"; end; } query_sql "UPDATE `pvp` SET `deaths` = `deaths` + 1 WHERE `char_id`="+@CID+"",@esc$; } end; } //============== Map ================== //PvP atlantis,129,227,0 warp chry_fld 1,1,chry_fld,128,92 //atlantis,50,87,0 warp gvs02 1,1,prontera,155,191 //atlantis,87,49,0 warp gvs03 1,1,prontera,155,191 //atlantis,50,12,0 warp gvs04 1,1,prontera,155,191 //============== MAP FLAG =============== // Player atlantis mapflag nosave atlantis mapflag noteleport atlantis mapflag nowarpto atlantis mapflag nowarp atlantis mapflag nomemo atlantis mapflag gvg off atlantis mapflag pvp on atlantis mapflag nopenalty atlantis mapflag nobranch atlantis mapflag pvp_noguild atlantis mapflag noloot atlantis mapflag noexp //========================== DUPLICATE NPC ==============================// /* CREATE TABLE IF NOT EXISTS `pvp` ( `char_id` int(11) unsigned NOT NULL auto_increment, `name` varchar(255) NOT NULL default '0', `kills` int(11) unsigned NOT NULL default '0', `deaths` int(11) unsigned NOT NULL default '0', KEY `char_id` (`char_id`), KEY `kills` (`kills`), KEY `deaths` (`deaths`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=151750 ; */ found solution and it works : - script item_get -1,{ OnPCKillEvent: if(getmapflag(strcharinfo(3),mf_pvp)) getitem 501, 10; }
-
@Haruka Mayumi i did check my npc/mapflag/pvp.txt my custom map is there, and i did tested the new script - script Simple -1,{ OnPCKillEvent: if(strcharinfo(3) == "CUSTOMMAP") getitem 7812,1; end; } still did not work..
-
didnt work, i warp to my custom pvp map, kill test char, dint get the item in my inventory
-
as title i have been using this script provided by @Emistry on script collection release, which is works great, but problem is whenever i add 4th npc, and setup a new quest, somehow the new quest is randomly assign to another npc, example : NPC 1 / NPC 2 / NPC 3 / NPC 4 1. i setup a new quest on NPC 4 and assign the quest for NPC 4 - done- 2. open up NPC 4 to confirm the quest is there in NPC 4 but its not there 3. upon checking NPC 1 to NPC 4, the new quest were assign at NPC 2.... can someone check it?
-
as title could someone share me the file, i have try download from http://nemo.herc.ws/patches/DisableMultipleWindows/ perhaps im using a wooden pc, python or window download did not work on that site thanks,
-
2018-06-20eRE Client Closes After Login Before Char Select Screen
Dolphin86 replied to Dolphin86's question in Client-side Support
still waiting if anyone could show me how to -
i was gone delete this post.. since i have download it, can u delete this sir?
-
Hello guys, i have question, i have a working client exe, i can login without any problem, but i just want to add disable multi client, i dont remember what client i used, so i pick a new one instead which had a successful multi client disable but fail, soo i try to diff myself which i had never done myself.. well its a learning for me, here the details Client : 2018-06-20eRagexeRE Data : ROenglishRE DIff Patch I selected: 3 Chat Flood Remove Limit 8 Custom Window Title 9 Disable 1rag1 type parameters (Recommended) 13 Disable Ragexe Filename Check (Recommended) 23 Enable /who command (Recommended) 24 Fix Camera Angles (Recommended) 290 Hide build info in client (Recommended) 34 Enable /showname (Recommended) 291 Hide packets from peek (Recommended) 35 Read Data Folder First 36 Read msgstringtable.txt (Recommended) 38 Remove Gravity Ads (Recommended) 39 Remove Gravity Logo (Recommended) 40 Restore Login Window (Recommended) 41 Disable Nagle Algorithm (Recommended) 44 Translate Client (Recommended) 46 Use Normal Guild Brackets (Recommended) 47 Use Ragnarok Icon 48 Use Plain Text Descriptions (Recommended) 49 Enable Multiple GRFs (Recommended) 53 Use Ascii on All LangTypes (Recommended) 64 @ Bug Fix (Recommended) 65 Load Custom lua file instead of iteminfo*.lub (Recommended) 73 Remove Hourly Announce (Recommended) 84 Remove Serial Display (Recommended) 90 Enable DNS Support (Recommended) 97 Cancel to Login Window (Recommended) 100 Disable Multiple Windows 207 Resize Font 213 Disable Help Message on Login (Recommended) 218 Show Exp Numbers 230 Always load Korea ExternalSettings lua file src/config/packets // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder #ifndef CONFIG_PACKETS_HPP #define CONFIG_PACKETS_HPP /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ #ifndef PACKETVER /// Do NOT edit this line! To set your client version, please do this instead: /// In Windows: Add this line in your src\custom\defines_pre.hpp file: #define PACKETVER YYYYMMDD /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD #define PACKETVER 20180620 #endif #ifndef PACKETVER_RE /// From November 2015 only RagexeRE are supported. /// After July 2018 only Ragexe are supported. #if PACKETVER > 20151104 && PACKETVER < 20180704 #define PACKETVER_RE #endif #endif #if PACKETVER >= 20110817 /// Comment to disable the official packet obfuscation support. /// This requires PACKETVER 2011-08-17 or newer. #ifndef PACKET_OBFUSCATION #define PACKET_OBFUSCATION // Define these inside src/custom/defines_pre.hpp or src/custom/defines_post.hpp //#define PACKET_OBFUSCATION_KEY1 <key1> //#define PACKET_OBFUSCATION_KEY2 <key2> //#define PACKET_OBFUSCATION_KEY3 <key3> /// Comment this to disable warnings for missing client side encryption #define PACKET_OBFUSCATION_WARN #endif #else #if defined(PACKET_OBFUSCATION) #error You enabled packet obfuscation for a version which is too old. Minimum supported client is 2011-08-17. #endif #endif /// Comment to disable the official Guild Storage skill. /// When enabled, this will set the guild storage size to the level of the skill * 100. #if PACKETVER >= 20131223 #define OFFICIAL_GUILD_STORAGE #endif #ifndef DUMP_UNKNOWN_PACKET //#define DUMP_UNKNOWN_PACKET #endif #ifndef DUMP_INVALID_PACKET //#define DUMP_INVALID_PACKET #endif /** * No settings past this point **/ /// Check if the specified packetversion supports the pincode system #define PACKETVER_SUPPORTS_PINCODE PACKETVER >= 20110309 /// Check if the client needs delete_date as remaining time and not the actual delete_date (actually it was tested for clients since 2013) #define PACKETVER_CHAR_DELETEDATE (PACKETVER > 20130000 && PACKETVER <= 20141022) || PACKETVER >= 20150513 /// Check if the specified packetvresion supports the cashshop sale system #define PACKETVER_SUPPORTS_SALES PACKETVER >= 20131223 #endif /* CONFIG_PACKETS_HPP */ i can enter username and password, but after enter my password game just crash... any idea? over here @Akkarin and please dont warn me... i dont know what title should i add
-
helol rathena, i would like to request a lates undiff hexed, which support disable multi client, im not sure which should i use , so thats the reason im asking a request here, thanks
-
how can i change the map location... to atlantis?
-
hye guys, i would like to request a very simple script, //////////////////////////////// About ///////////////////////////// 1. When player get killed in pvp map, the killer will get 1 Symbol Of Bravery ( 7812 ) directly into his inventory thats all.. pretty simple... just i want the killer get them only in pvp maps
-
i have tested neither work.. i did try it, within the custom map atlantis, but nothing drop
-
hye, i would like to request a script that when ever any player killed at specific map, all item in inventory will be drop only to specific map which is atlantis, not to every time they died, just when they enter that map as i mention, all item within their inventory will drop if they get killed
-
hye sorry if i ask noob questions, im kinda confused how can i set up my normal card drop to be 10% and MVP card drop 5% im bad at maths...
-
works purfectly as it suppose to
-
hye sorry if im noob, could someone craft this script, usually i did @main create #main, and that will only last when im online within the game, but once im offline that channel is gone, can someone create a script with simple configuration soo player can chat global soo other players no matter what map they are can see it, just with simple whisper #main thanks
-
he have not yet reply, gone have to wait then unless someone could make 1 for me and public release it for everyone
-
as title i would like to request if anyone have it or could make 1 for me, its something as like below, thanks
-
Thor Patcher Cant Communicate with Server
Dolphin86 replied to Dolphin86's question in Third Party Support
which part? you meant i need to add port? example RootURL='http://******.com:22/patch/' im not sure what are my port are... or should i just copy as you mention? da heck..? it work but it wont patch...? nvm reason it wont patch since it detect my old patch list order i just add the next number from my last patch list order..\ worked now, thanks -
i think i have configure my thor patcher correctly, but im still cant connect... weird, could someone point out which part did i made wrong? config.ini main.ini im using Shinro Design Thor Patcher Skin : Link
-
Web Release: [Html] Simple Purple Website Responsive One-Page
Dolphin86 replied to Mihael's topic in Web Releases
Thanks for this, using for my server Update ! all done : view -
Vending Controller Error - Map not found in index list
Dolphin86 replied to Dolphin86's question in Scripting Support
@KeyMaster i have the map its working, i can warp and walk around the map