-
Posts
141 -
Joined
-
Last visited
-
Days Won
3
Community Answers
-
nitrous's post in Configuring client to talk to RathenaWebBuiltin was marked as the answer
this has good steps on setting it up.
-
nitrous's post in How to use map-server-generator.exe was marked as the answer
There is some documentation here: https://github.com/rathena/rathena/blob/master/doc/map_server_generator.md
for reputation, you need to pass /generate-reputation to the generator
So the full command would be
./map-server-generator.exe /generate-reputation
-
nitrous's post in Defining MAX_ITEMID beyond USHRT_MAX was marked as the answer
See https://github.com/rathena/rathena/pull/5141
-
nitrous's post in ElementProof Potions and other elemental resistance items was marked as the answer
There's a scroll for holy armor, you might be able to use that.
http://ratemyserver.net/item_db.php?item_id=14540&ird=0&small=1&back=1
-
nitrous's post in Failed to Read attendance configuration file was marked as the answer
compare yours to this one: https://github.com/rathena/rathena/blob/master/db/re/attendance.yml
Spacing is important in YAML files.
You need to remove the spaces before the achievement key.
-
nitrous's post in [Solved] Spawning items with elements or special attributes was marked as the answer
https://github.com/rathena/rathena/blob/8893ef1ccf2c6fd392da9c71952b2a94a0b902f7/doc/script_commands.txt#L4459
-
nitrous's post in Status Icon without timer was marked as the answer
Add it to the list of permanent effects in source, status.cpp:status_change_start::L9347. The tick has to be -1.
-
nitrous's post in Query_sql error was marked as the answer
Well I'm dumb, I'm connecting to the wrong database. Please ignore this post.
-
nitrous's post in Variables not resetting unless log off was marked as the answer
You can use addrid https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L3824-L3844
It will look something like this:
addrid(0); variable = 0; detachrid(); query_sql( "DELETE FROM `char_reg_num` WHERE `key`='variable' " );
-
nitrous's post in Monster Hp Bar always showing was marked as the answer
You can try this diff.
https://github.com/vstumpf/rathena/blob/playground/diffs/mob_hp_bars.diff
-
nitrous's post in sole player reward was marked as the answer
- script SGH_POINTS -1,{ OnPCLoginEvent: if ($sghreward) end; addtimer 60000,"SGH_POINTS::OnSghGet"; end; OnSghGet: if ($sghreward) end; getmapxy( .@new$, .@x, .@y, 0 ); if( .@new$ == "new_1-1" ) { set SGH_MINUTE_P, SGH_MINUTE_P + 1; dispbottom "Gained : 1 Point(s). Total : "+SGH_MINUTE_P+" Minute(s)."; } if ( SGH_MINUTE_P == 3 ){ getitem 30004,1; $sghreward = 1; end; } addtimer 60000,"SGH_POINTS::OnSghGet"; end; } dont need the OnInit label
-
nitrous's post in About Emergency Call Skill was marked as the answer
if (dstsd->bl.m != sd->bl.m) // If member outside castle will be skiped continue; Try that
-
nitrous's post in Stylist max cap was marked as the answer
Check your imports, maybe it's in there?
Make sure in battle.c, the minimum of max_hair_style is 0.
Also, min_hair_style should be 0 if you want 0-29 hairstyles.
-
nitrous's post in sound effect whole server was marked as the answer
Use addrid(0) and soundeffect()
-
nitrous's post in Charms System was marked as the answer
No, you're supposed to remove IT_CHARM from the list.
-
nitrous's post in Player logout time was marked as the answer
Gettimetick(2) is the number of seconds since the unix epoch (Jan 1st 1970). When you log out, "set LogOutTick, gettimetick(2)". For example, let's say 1000000.
When you log in, "set LogInTick, gettimetick(2)". For example, let's say 1100000.
So "LogInTick - LogOutTick" is 1100000 - 1000000 = 100000. The player has been offline for 100000 seconds.
-
nitrous's post in Proper usage of random option was marked as the answer
*setrandomoption(<equipment indice>,<index>,<id>,<value>,<param>{,<char id>}); index parameter can be 0 to MAX_ITEM_RDM_OPT-1 (default 0-4). You're missing the <index> parameter, which is the value that tells you which slot to put it in (0 - 4).
-
nitrous's post in I couldn't find the file! was marked as the answer
AFAIK that's in the client, you'll have to use a hex editor to change it.
-
nitrous's post in Nerfing Jupiter Thunder was marked as the answer
If you want to change the matk ratio, you'll have to make a new case in the switch-case statement in battle_calc_magic_attack.
For example
case WZ_JUPITEL: skillratio -= 20; break; If you want to change the number of hits, edit db/skill_db.txt. -
nitrous's post in Daily Exp Buff NPC was marked as the answer
Try this
prontera,111,111,4 script Daily Buff -1,{ function getcurrenttime; function getcurrenttime { return (gettime(7)*10000)+(gettime(6)*100)+gettime(5); } mes "add your own message"; mes "add your own message"; mes "add your own message"; next; if(select("Yes","No") == 2) close; if(#LastDailyBuff >= getcurrenttime()){ mes "still on cooldown"; close; } mes "here's your buff"; sc_start SC_EXPBOOST,3600000,100; #LastDailyBuff = getcurrenttime(); close; }