Dastgir
Script Developers-
Content Count
3805 -
Joined
-
Last visited
-
Days Won
250
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Dastgir
-
/conf/import/log_conf.txt Remove from there, Since logs.conf is read first, but import folder overwrites the value. So enable_logs becomes 0
-
Maybe your VPS is blocking localhost connection to those ports So try changing Map-server.conf char_ip: 127.0.0.1 ^ your wan IP(public ip) Same with char-server.conf and login_ip. Also be sure you have changed that s1/p1 to something else. I hope this would help you.
-
Dogpatch fix would work, Since that's the way I increase stat every Rebirth too. And is required to do every reset or something like that. Since server don't save this extra stat points, and we have to add manually.. I will better add a reset npc to Rebirth npc itself, so there won't be further complaint about it.
-
Hmmm... Seems i need to test again...
-
Can you tell what changes you make? Maybe the view Id doesn't match to ACCESSORY_Id/item_db or maybe you missed some step...
-
BG is suited for it, make them join in 2 teams of bg.Other options are, if they are on same party/guild, you can have gvg mapflag and so on..
-
OnInstanceInit won't be executed. Since it executes on the map of instance. You have map as none... Also you need to use emulated name for setwall, but original map name for npc.
-
getitem Apple, 1, .@guildMasterAccId; Change Apple to Any ItemID you want.. eAthena don't support itemNames as constants, so you need to use ItemID's
-
i have 2014-10-22b but... byte size is: 4.12 Mbs but this have a size of 15.3 Mbs why? The one that kRO provides is PACKED by THEMIDA. we unpack it, and thus the size increases.
-
you can disable RENEWAL by editing src/config/renewal.h //#define DISABLE_RENEWAL just uncomment it, and it will make server use old mechanics.
- 4 replies
-
- old times
- new classes
-
(and 1 more)
Tagged with:
-
Hercules don't depend on that , i.e you can put any version.
-
You are using wrong msgstringtable.. use https://raw.githubusercontent.com/ROClientSide/Translation/master/data/MsgString/2013-08-07Ragexe_msgstringtable.txt and rename it to msgstringtable.txt ...
-
Ragnarok Online Mobile Version CN Teaser Trailer at Chinajoy 2015
Dastgir replied to JulioCF's topic in Ragnarok News
It's just too good... -
Query_sql to check if the players is online
Dastgir replied to tmav94's question in General Server Support
Look this other two: query_sql("SELECT login.account_id FROM login LEFT JOIN `char` ON login.account_id=`char`.account_id WHERE `char`.online=1") and: if(isloggedin(getcharid(3))) They do the samething? No. getcharid(3) Means character is attached. you can do something like query_sql "SELECT `account_id` FROM `char` WHERE `char_id`='"+ .@char_id +"' AND `online`=1",.@acc_id;if (!.@acc_id){//CHARACTER IS OFFLINEend;}//CHARACTER IS ONLINE but I recommend you to use charid2rid, as its efficient as compared to executing Queries. -
So you have your own github but lost the updates from Hercules one. you can do following: Do One Time: git remote add upstream https://github.com/HerculesWS/Hercules.git Above will add a new remote named as upstream. git fetch upstream Above will fetch all commits from upstream(Hercules repo) , You need to do it everytime you need to update. git checkout master Checkout to your Master branch. git merge upstream/master master Merge the Hercules repo 'master' branch with your git 'master' branch. (I hope I didn't misunderstood your question xD)
-
Query_sql to check if the players is online
Dastgir replied to tmav94's question in General Server Support
why use query_sql you can use this method .@acc_id = charid2rid(.@char_id);if (!.@acc_id){ debugmes "Char not online"; end;}//DO anything with .@char_id and .@acc_id here.(Character is Online) -
Maybe there's some custom source/script which is rewarping them to prontera?
-
You cannot create kRO account unless you are Korean, since it requires kssn. Maybe , if there's any Korean friend of you, ask them to make an account.
-
Hmm.. Yup, I think that's why I didn't released it.. And i forgot.I think I manually merged that PR in @@karazu server and then given this plugin.
-
PEEK - Successor to Yommy's Packet Analyzer
Dastgir replied to Neo-Mind's topic in Client-Side Releases
@@Triedge I assume you wanna analyze new packets, for which you need to look into kRO client and not in your server (just clarifying) So you also need to have kRO account(which is hard)- 44 replies
-
- Packet Analyzer
- packet parser
-
(and 2 more)
Tagged with:
-
PEEK - Successor to Yommy's Packet Analyzer
Dastgir replied to Neo-Mind's topic in Client-Side Releases
Let's hope someone understand that language,And @@Neo, now I think, we need you. Also @@Triedge, as I have said in earlier topic, you could make a simple send/receive function hook (as dll) and use that, since PEEK and other will give you some other error while using it in new clients.- 44 replies
-
- Packet Analyzer
- packet parser
-
(and 2 more)
Tagged with:
-
PEEK - Successor to Yommy's Packet Analyzer
Dastgir replied to Neo-Mind's topic in Client-Side Releases
PEEK isn't running? Or you forgot to copy the dll that is provided with PEEK? Copy all files in the GIT in my RO folder. Select my executable in Peek. Start my executable. Bug port. 1) Copy Input/ws2_pp.dll to your RO folder 2) Rename ws2_pp.dll to ws2_32.dll in RO Folder 3) Run Peek 4) Select Client. 5) Click Start Analyzer 6) Run the Client.- 44 replies
-
- Packet Analyzer
- packet parser
-
(and 2 more)
Tagged with:
-
http://upaste.me/f8b42118100b0bab2 ^ This is as it is version, made months ago, there's no compile warnings/errors, but dont' know if it works or not with new rev, How it works? Add Following to item: Charm: true in item_db.conf in whichever item you want.
-
PEEK - Successor to Yommy's Packet Analyzer
Dastgir replied to Neo-Mind's topic in Client-Side Releases
PEEK isn't running? Or you forgot to copy the dll that is provided with PEEK?- 44 replies
-
- Packet Analyzer
- packet parser
-
(and 2 more)
Tagged with:
-
Bug in Vending with Client 2015 [Video]
Dastgir replied to Triedge's question in Client-Side Support
Part 2 n_n What if I tell you, both are related to single problem...