-
Posts
115 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Whathell
-
Why not? Is the feature not that good anymore? Were there alternatives in place?
-
Are people still using this feature on 20180620 client? Problem: I enabled this feature, added custom keys on client and server, but server is not accepting the client connection. client keys: verified by NEMO extraction: server keys: Can somebody help me identify the problem?
-
kRO Full Client - 2021-04-06 - Includes BGM & RSU
Whathell replied to Akkarin's topic in Client Releases
Is it possible for you to create torrent file for this? Or maybe have it in parts? My download keeps failing at the middle for some reason. -
Awesome month!
-
Yes, it really wont work the way you are expecting. Let me tell you what you added. set [email protected], 300; (actually you added >300) -- What it does: this line here gives the [email protected] a value of 300 every time you use it in other parts of your script. Use: easy script set up. Editing this part will reflect in the whole script. Use like: set [email protected],5000; // Zeny required to save a build ---- setting if (Zeny<[email protected]) { message strcharinfo(0),"Not enough Zeny."; close; } ----- use in script if (Zeny<5000) { message strcharinfo(0),"Not enough Zeny."; close; } ------ this is how the script is read based on the setting For the script to work the way you want, you might need a limit on your sql table where the build is saved that will return an error. Or maybe a per stat check before saving builds. You can go ask for that in scripting request maybe.
-
I'm using weediff and nemo..with my custom keys checked here. Check your packet db. Set the packet version to match the client you are using.
-
Naka enable ba yung drop skull when player dies mo? Kung oo, disable mo muna, tapos try mo ulet. Pag walang naging problema, sprite ng skull ang nagccause ng error.
-
I guess, they won't be able to connect to the server. ohh that's great. been a major headache bcoz of cheaters. can this also eliminate bots? Exactly the purpose of this feature.
-
Try this.
-
Need help: Running a basic server (pre-re and re)
Whathell replied to laylayzi's question in General Support
Everything you need is here. -
When high wizard PvP's, Map Server Crashes.
Whathell replied to Kenjic's question in Graphics Support
This is not related to client since it crashes map server. Must be in your core files. What error are you getting? Have you tried testing all of HW skills? -
Well... What happens after the text at the bottom disappears? Does it fail to patch? Or are you able to start the game? As for the exe to start using the patcher, 1. do not use the patch (diff) "Disable 1rag1 type parameters" and 2. Run patcher as admin I will try to upload my patcher core file that i edited to always ask to run as admin.
-
Help! :( 2013-08-07 Diff using N.E.M.O.
Whathell replied to Archetype Saber's question in Client-side Support
What exactly is the error message you are getting (if there is any)? -
[Ask] How to Delete "Bank" Fiture on ALT+V
Whathell replied to azharfal1812's question in Client-side Support
Replace the Bank button texture in your data folder (or inside your grf, whichever you are using) and replace it with the same picture size with pink color. The hex code of that pink color is FF00FF which appears transparent in ro. But i would not suggest it. Players can still access it if they click on this transparent button. It is still there, just not visible. I'd say go for client hex editing. I believe there is a guide here in the forums. -
Do you have files that you do not want to delete? You better upgrade to the latest rAthena files.
-
What do you mean? Upgrade your sql by using files here rathena\sql-files\upgrades\
-
2012-04-10 and 2013-08-07 are the clients you can use that are officially supported. 2011-11-16 for pre-renewal. check here for client releases.
-
Convert the database 3ceam -> rAthena
Whathell replied to Kariton Revolution's question in General Support
yes it wont be. just execute those sql files (using navicat of phpmyadmin) to upgrade your sql. -
You better switch to rAthena. Support and development is active so you can really get close to the latest updates of kRo.
-
Yep. I dont know if that is possible thru script. src edit might bee needed for that.
-
{skill "MC_VENDING",10; skill "MC_CHANGECART",1; skill "MC_PUSHCART",10;},{ setcart 1; },{ setcart; }
-
Chat room on the char? I dun know if there is a way to make a chat room on a char, only on NPC.
-
Convert the database 3ceam -> rAthena
Whathell replied to Kariton Revolution's question in General Support
Use the upgrade svn sql files in the sql upgrade folder. -
Help with Permanent Blessing and Agi on item
Whathell replied to Pink Guy's question in Database Support
The "skilleffect" in his script is for the visual effects (like someone casted the skill on you), the effect part is "sc_start SC_BLESSING", and the "-1" makes the effect infinite. so there you go for the explanation.