-
Posts
737 -
Joined
-
Last visited
-
Days Won
9
Community Answers
-
Lighta's post in map-server.exe unable to start 0xc000007b was marked as the answer
MSVCR110.DLL
To fix this download and install https://www.microsoft.com/fr-ca/download/details.aspx?id=30679
(it should install the dll in System32 like previous answer but it's safer).
-
Lighta's post in Package download error CentOS 7 was marked as the answer
I Rolf, The full log of the command might be better to debug.
Please try to install package one by one to see which one are causing the error then report the full log as attachement here.
(i.e : "yum install make". Then "yum install mysql") etc...
Also you can also try to execute the script "config.pl" in your tools folder.
ie : [lighta@Lighta_fedo tools] $ ./config.pl --target=Inst
Running rAthena's configuration tool...
== Installing Software ==
NOTE: This auto-install feature is experimental. Package names vary in different distributions and versions, so they may be incorrect.
....
The list I was using with Cent7 was:
my @aListSoft = ("gcc","gdb","zlib","zlib-devel","make","git","mariadb-server","mariadb","mariadb-devel","pcre-devel");
Last you on a CentOS7 but on which arch ? x64 x86 arm? please provide "uname -a"
Good luck.
-
Lighta's post in Centos 6 64bit Sh script was marked as the answer
stop_server => 'alias ra_stop='/path/to/ra/athena-start stop'
start_server => 'alias ra_start='/path/to/ra/athena-start start'
restart_server => 'alias ra_restart='/path/to/ra/athena-start restart'
update_server => 'alias ra_upd='/path/to/ra/tools/update.pl'
Once all alias are define you could simply create some desktop file, to match the alias command.
Or simply create some desktop file with the full command like I gave you.
Both should work fine.
-
Lighta's post in [Error]: make_listen_bind: bind failed (socket #1, error 10048: Only one usage o f each socket address (protocol/network address/port) is normally per was marked as the answer
You have an application that already using that port. So turn it off before launching the serv or change serv port.
(The application could also be rathena himself if you didn't start it correctly)
Just check out with a netstats
-
Lighta's post in Outdated jobs list? was marked as the answer
well you could do it like that to but you're algo is like 2^joblen then mine... because you will check lot of empty space.
Which job are not listed?
If you want for instance see if HighPriest can wear item i:
if(i.job & 0x00000100 && i.class & 2)
(if the job is priest and the base is trans then it's an high priest).
But yeah you need to parse the 2 column for high something, altought if you're goal is to see who could wear what you could probably do the 1st parse on i.class, then i.job for the remaining list.
On sql (assuming mysql) it will be a :
select * from item_db where equip_jobs&0x00000100 and equip_upper&2;
(untested but something very close to this)
-
Lighta's post in Connection of char-server REFUSED was marked as the answer
You can run tools/config.pl to fix that for you if you have perl, otherwise from the console it seem he trying to connect with "ragnarok_" as username and not "ragnarok" are you sure you didn't put userid "ragnarok_" into an import file ?
ps : we do not support Judas modified emulator if is that you're running.
-
Lighta's post in mmo_charstatus size = /n is too big to be transmitted was marked as the answer
Hmmm ye, it's because map and char server shared that structure and transmit it on some action to stay sync.
This allow perseverence but also multimap support.
Now from what you quote, you don't have much field so I presume it's tab that increase it that much. Guess is that MAX_STORAGE or MAX_INVENTORY is a bit too big.
If you want to keep t that big, you could still do something like mmo_charstorage and move out related field into it. Then you have to check more or less when the previous mo_charstatus was exchanging data and transmit your new struct into a new packet arround the same event. Be carefull of race condition if so.
-
Lighta's post in Can't Update SVN Revisions was marked as the answer
try this in cli :
svn switch --relocate https://rathena.svn.sourceforge.net/svnroot/rathena http://svn.code.sf.net/p/rathena/svn <path_to_working_copy> -
Lighta's post in Can't compile map-server_sql was marked as the answer
svn up && ./configure && make clean sql
-
Lighta's post in Help i created a mapflag was marked as the answer
map_flag_gvg(src->m) is a macro, that the same as :
assuming src->m = m;
(map[m].flag.gvg || ((agit_flag || agit2_flag) && map[m].flag.gvg_castle))
so ye you can put map_flag_tvt(src->m) if you wish but that mean you'll have to define what is map_flag_tvt, either a function or a macro.
you can simply use your mapflag like this :
assuming my mapflag is tvt;
if(map[m].flag.tvt){ //the map m as the mapflag tvt on
foo; //do foo
}
-
Lighta's post in Customizing Landprotector was marked as the answer
Add something in skill_delunit.
When your unit is being deleted stop the associate status foreachinrange.
-
Lighta's post in i got a problem after i update my SVN to 17181 was marked as the answer
in cli :
mysql -u youruser -p yourdb < /path/to/my/sqlfile
or in mysql shell :
mysql > use yourdb;
mysql > source /path/to/my/sqlfile
both command will load file into <yourdb> executing the query in it thus updating your table. (for visual mode idk, open file take the queryand ask to execute it..)
Error 17182, did you have modification on skill.c ?, those constant was remove on last version but he's attempting to use them that why he's failling.
Please fix conflict or accept their-full to flush your file and take svn one. You could reput your mod afterward if so. Or take a quick look at changeset and reproduce the step.
Also make sure your doing a clean build.
-
Lighta's post in how to make certain long ranged skills bypass pneuma was marked as the answer
it's better to quote error if you want help on this as we don't all want to try it out to search trivial error. (and error message are usually descriptive enough).
now MarkZ had the good idea the better way is to mark those ignore it in db so you can change it easely, but adding a whole new row for this is a little bit overkill.
here the simplier way to do it, we'll add a new inf2 and set it on dragon breath as exemple :
-declare new inf2 :
skill.h::e_skill_inf2 add new inf2 with next bitmask :
.... INF2_CHORUS_SKILL = 0x4000, // Chorus skill INF2_BYPASSPNEUMA = 0x8000, };
-use inf2 in code
battle.c::battle_calc_damage
if( ( !(skill_get_inf2(skill_id)&INF2_BYPASSPNEUMA) && sc->data[SC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG ) || sc->data[SC__MANHOLE] ) { d->dmg_lv = ATK_BLOCK; return 0; }
-set dragon breath with this inf2 :
2008,9,6,2,3,0xC2,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x8000,0,misc,0, RK_DRAGONBREATH,Dragon Breath
This step are the step you need to do and result you should have, here the current total diff. (unfortunatly diff won't match long, but if you understand the step you'll have no issue to update for latest version
# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /home/lighta/Documents/Myscript/RO/Servs/rathena # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: db/pre-re/skill_db.txt --- db/pre-re/skill_db.txt Base (BASE) +++ db/pre-re/skill_db.txt Locally Modified (Based On LOCAL) @@ -38,6 +38,7 @@ // 0x1000- disable usage on enemies (for non-offensive skills). // 0x2000- skill ignores land protector (e.g. arrow shower) // 0x4000- chorus skill +// 0x8000- ignore pneuma // 13 maxcount: max amount of skill instances to place on the ground when // player_land_skill_limit/monster_land_skill_limit is enabled. For skills // that attack using a path, this is the path length to be used. @@ -685,7 +686,7 @@ 2005,1,6,2,4,0x2,2,5,1,no,0,0,0,weapon,3, RK_WINDCUTTER,Wind Cutter 2006,0,6,4,-1,0x2,5,5,1,no,0,0,0,weapon,0, RK_IGNITIONBREAK,Ignition Break 2007,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0, RK_DRAGONTRAINING,Dragon Training -2008,9,6,2,3,0xC2,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0,0,misc,0, RK_DRAGONBREATH,Dragon Breath +2008,9,6,2,3,0xC2,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x8000,0,misc,0, RK_DRAGONBREATH,Dragon Breath 2009,0,6,4,0,0x3,3:4:5:6:7,5,1,no,0,0,0,none,0, RK_DRAGONHOWLING,Dragon Howling 2010,0,0,0,0,0,0,10,0,no,0,0,0,none,0, RK_RUNEMASTERY,Rune Mastery 2011,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0, RK_MILLENNIUMSHIELD,Millenium Shield Index: db/re/skill_db.txt --- db/re/skill_db.txt Base (BASE) +++ db/re/skill_db.txt Locally Modified (Based On LOCAL) @@ -38,6 +38,7 @@ // 0x1000- disable usage on enemies (for non-offensive skills). // 0x2000- skill ignores land protector (e.g. arrow shower) // 0x4000- chorus skill +// 0x8000- ignore pneuma // 13 maxcount: max amount of skill instances to place on the ground when // player_land_skill_limit/monster_land_skill_limit is enabled. For skills // that attack using a path, this is the path length to be used. @@ -685,7 +686,7 @@ 2005,1,6,2,4,0x2,2,5,1,no,0,0,0,weapon,3, RK_WINDCUTTER,Wind Cutter 2006,0,6,4,-1,0x2,5,5,1,no,0,0,0,weapon,0, RK_IGNITIONBREAK,Ignition Break 2007,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0, RK_DRAGONTRAINING,Dragon Training -2008,9,6,2,3,0xC2,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0,0,misc,0, RK_DRAGONBREATH,Dragon Breath +2008,9,6,2,3,0xC2,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x8000,0,misc,0, RK_DRAGONBREATH,Dragon Breath 2009,0,6,4,0,0x3,3:4:5:6:7,5,1,no,0,0,0,none,0, RK_DRAGONHOWLING,Dragon Howling 2010,0,0,0,0,0,0,10,0,no,0,0,0,none,0, RK_RUNEMASTERY,Rune Mastery 2011,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0, RK_MILLENNIUMSHIELD,Millenium Shield Index: src/map/battle.c --- src/map/battle.c Base (BASE) +++ src/map/battle.c Locally Modified (Based On LOCAL) @@ -829,7 +829,7 @@ status_change_end(bl, SC_SAFETYWALL, INVALID_TIMER); } - if( ( sc->data[SC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG ) || sc->data[SC__MANHOLE] ) { + if( ( !(skill_get_inf2(skill_id)&INF2_BYPASSPNEUMA) && sc->data[SC_PNEUMA] && (flag&(BF_MAGIC|BF_LONG)) == BF_LONG ) || sc->data[SC__MANHOLE] ) { d->dmg_lv = ATK_BLOCK; return 0; } Index: src/map/skill.h --- src/map/skill.h Base (BASE) +++ src/map/skill.h Locally Modified (Based On LOCAL) @@ -70,6 +70,7 @@ INF2_NO_ENEMY = 0x1000, INF2_NOLP = 0x2000, // Spells that can ignore Land Protector INF2_CHORUS_SKILL = 0x4000, // Chorus skill + INF2_BYPASSPNEUMA = 0x8000, }; //Walk intervals at which chase-skills are attempted to be triggered. -
Lighta's post in DUAL SERVER was marked as the answer
@java it's gonna be hard for him to help you if you don't specify wich architecture you want. I mean sure we could tell you what configuration to put in the end but you need to awser his question 1st :
-How many map-server ?
-How many char-server ?
-How many login-server ?
If you just want 2 separate server, like with nothing to share, then yeah this wiki page ain't what you looking for as it was create with those arch in mind :
arch1
arch2
For 2 separate one you can pretty much duplicate everything you got and just change the following port in config : (import/(map_conf, login_conf, char_conf)
map_port :
login_port :
char_port :
Add a new </connection> info in your clientinfo and you're good to go.
NB : also I'd recommand to change binary name : map-server_sql to something like map-server_sql2 or such as for now the stop command is based on name. (So if you keeping it like that and do athena-start stop, it will close both). Either this or attach a PID a screen whatever you just have to know you may get issue with the stop.
Never had issue pointing in same DB but I wouldn't recommend it for a prod server as you probably corrupt entry.
To finish that the easier way to setup a "Dual" server (actually that really a dual as the other one.. blabla), probably also the saffest but the most expensive either in ram and storage (well you probably figure that already).
hope you get it, peace.
-
Lighta's post in @autotrade Timer was marked as the answer
From what I understand I think it already exist :
// Set this to the amount of minutes autotrade chars will be kicked from the server.
at_timeout: 0
In conf/battle/misc.conf
-
Lighta's post in @request poll vote npc was marked as the answer
He already anwsered that issue : http://www.eathena.ws/board/index.php?showtopic=165462&view=findpost&p=915910