-
Content Count
252 -
Joined
-
Last visited
-
Days Won
33
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Asheraf
-
Simply as a server owner you need to setup your db only 1 time, while default confs are for devs that need to have multiple databases for their work and it makes more sense to have the logs in the same database.
-
How do we change NPC text alignment?
Asheraf replied to changelets's question in Client-Side Support
Hello there, the picture you posted doesn't seems to work but i'm assuming you're searching for something like this? This is the only client that i know thats supports RTL language (Arabic) which is aRO client. -
- Open inter-server.conf - Search for @include "conf/global/sql_connection.conf" - Replace with //Logs DB connection info sql_connection: { db_hostname: "127.0.0.1" db_port: 3306 db_username: "ragnarok" db_password: "ragnarok" db_database: "ragnarok" }
-
I second this, Please put them on different database. You can change them by editing inter-server.conf its just defaulted to use 1db.
-
Error after kill MVP monster please help
Asheraf replied to bajing88's question in General Server Support
"version 15288 from hercules"?!!! as i know hercules have never used svn @.@ -
Hello there, you can use an npc with trader type for more examples check this link https://github.com/HerculesWS/Hercules/blob/master/doc/sample/npc_trader_sample.txt
-
To generate luas for custom maps use this plugin https://github.com/HerculesWS/StaffPlugins/tree/master/Haru/naviluagenerator
-
Hat Preview in item description & Description link mouse over
Asheraf replied to loki's question in Client-Side Support
Recently there was a commit that added support for map server auth packet for clients >= 20160330, however we still miss many features in the 2015 clients, hopefully getting them soon and start supporting newer client versions. -
Hat Preview in item description & Description link mouse over
Asheraf replied to loki's question in Client-Side Support
the first one I don't know the date but for the item preview it got added in 2016-10-26 in kRO (not sure if in sakray or main or both). Edit: no Hercules does not support clients > 2015 yet. -
Hat Preview in item description & Description link mouse over
Asheraf replied to loki's question in Client-Side Support
Simply that server uses a newer client version both the features that you talked about them are client side features from kRO. -
Currently there is no magical config in the emulator to set the episode, the only way to do it is by changing everything manually.
-
jobname(Class)
-
Compiling problem hercules emulator
Asheraf replied to elinhopp's question in General Server Support
Do not run hercules using root user, make a new user and use it. -
Hercules support 2ways of adding shops first one similar to what you said <map name>,<x>,<y>,<facing><TAB>shop<TAB><NPC Name><TAB><sprite>,<itemid>:<price> also there is another way to do it using trader type, you can check the documentation at https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt#L309-L330 and for some samples check https://github.com/HerculesWS/Hercules/blob/master/doc/sample/npc_trader_sample.txt
-
"His base lvl: " + BaseLevel + "."
-
As ridley said those quests cant be completed due to missing of other official features. I have a completed Verus city scripts but it miss a lot because of that.
-
im not sure how this is could be done but an easier solution would be to give the player the box again if it failed.
-
if (30000 - countitem(ID) < Amount) { message("make sure you have enough space in your inventory"); end; } getitem(ID, Amount); end;
-
I always wondered what are people supposed to use instead of goto Depended on the situation it could be replaced with callsub/while/switch....
-
resetstatus() should be lowercase however the script uses a lot of goto (deprecated command) and its not recommended to use it.
-
disabled_items not working under map_zone_db.conf
Asheraf replied to wallaby's question in General Server Support
This is how it works on official servers you could equip the item but the effect disabled however you can edit that using a battle config https://github.com/HerculesWS/Hercules/blob/master/conf/map/battle/items.conf#L111-L116 -
Hercules support clients up to 2015-12-16aRagexe however not all new features working.
-
any errors after ./configure finish?
-
Check this tutorial http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html