so yeah, like the topic says its not showing to other players, im using client 2011-03-15a, its diffed to show aura over lvl 99 and 150, ive changed my client.conf multiple times, set max_lv and aura_lv to 99, then to 200(my max lvl is 200), also changed it in the battle.c
{ "max_lv", &battle_config.max_lv, 200, 0, 200, },
{ "aura_lv", &battle_config.aura_lv, 200, 0, INT_MAX, },
{ "max_lv", &battle_config.max_lv, 99, 0, 200, },
{ "aura_lv", &battle_config.aura_lv, 99, 0, INT_MAX, },
{ "max_lv", &battle_config.max_lv, 99, 0, 200, },
{ "aura_lv", &battle_config.aura_lv, 99, 0, 200, },
{ "max_lv", &battle_config.max_lv, 99, 0, 99, },
{ "aura_lv", &battle_config.aura_lv, 99, 0, INT_MAX, },
ive tried many combinations with this and the client.conf and to no avail can i see other players aura's im starting to think this may be a bug unless somone can shed some light upon the matter :/
P.S. i can see my own aura over lvl 99 all the way up to 200 but no one else can see my aura after lvl 99, when i hit lvl 99 they can, but after another lvl no more aura
okay Thanx to my good friend Plankt i figured out how to get this bastard working
Step 1: change the values in your battle.c to this and recompile.
{ "max_lv", &battle_config.max_lv, 99, 0, 127, },
{ "aura_lv", &battle_config.aura_lv, 200, 0, 200, },
Step 2: Change the values in your client.conf to this
max_lv: 99
aura_lv: 200
client_limit_unit_lv: 1
and diff your client to have enable aura over lvl 99 and 150. and all should work correctly
Hope this Helps anyone.
Thanx Plankt!!!