Jump to content

Recommended Posts

Posted (edited)

My problem is I can see my own aura but i can't see other players aura.. the max level of the server is 255! What should i do to fix this?

zMKWn.jpg

Edited by Tabomax
  • 3 months later...
  • 2 weeks later...
  • 2 weeks later...
  • 5 months later...
  • 6 months later...
  • 1 month later...
  • 1 month later...
Posted
// Maximum allowed 'level' value that can be sent in unit packets.
// Use together with the aura_lv setting to tell when exactly to show the aura.
// NOTE: You also need to adjust the client if you want this to work.
// NOTE: Default is 99. Values above 127 will probably behave incorrectly.
// NOTE: If you don't know what this does, don't change it!!!
max_lv: 99

// Level required to display an aura.
// NOTE: This assumes that sending max_lv to the client will display the aura.
// NOTE: aura_lv must not be less than max_lv.
// Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
//          will be sent as being all level 98, and only characters with level
//          150 or more will be reported as having level 99 and show an aura.
aura_lv: 99

// Units types affected by max_lv and aura_lv settings. (Note 3)
// Note: If an unit type, which normally does not show an aura, is
//       set it will obtain an aura when it meets the level requirement.
// Default: 0 (none)
client_limit_unit_lv: 99     <-------set it to 99 so you can see others/mobs aura at level 99

maybe this could help.

  • 7 months later...
Posted

This method fixed my aura problem.
Hope it works for anyone :D

 

1st Download this plugin and diff your client.

 

diff your client EnableAuraOverLvl99 

 

2nd Open src/map/battle.c and find 

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 160,	 0,	 160,	 },

3rd Change the following

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 255,	 0,	 255,	 },

4th Open conf/battle/client.conf then find and replace with this

// Maximum allowed 'level' value that can be sent in unit packets.
// Use together with the aura_lv setting to tell when exactly to show the aura.
// NOTE: You also need to adjust the client if you want this to work.
// NOTE: Default is 99. Values above 127 will probably behave incorrectly.
// NOTE: If you don't know what this does, don't change it!!!
max_lv: 99

// Level required to display an aura.
// NOTE: This assumes that sending max_lv to the client will display the aura.
// NOTE: aura_lv must not be less than max_lv.
// Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
//          will be sent as being all level 98, and only characters with level
//          150 or more will be reported as having level 99 and show an aura.
aura_lv: 255

// Units types affected by max_lv and aura_lv settings. (Note 3)
// Note: If an unit type, which normally does not show an aura, is
//       set it will obtain an aura when it meets the level requirement.
// Default: 0 (none)
client_limit_unit_lv: 1

5th Recompile & Start your server.

Note : I'm using 2012-04-10aragexe (I forgot where did I download this but credits to the owner, I can't find the download link so I reupload it)

Download here : https://www.mediafire.com/?z8bhj45qye8h0x0

Posted

This method fixed my aura problem.

Hope it works for anyone :D

 

1st Download this plugin and diff your client.

 

diff your client EnableAuraOverLvl99 

 

2nd Open src/map/battle.c and find 

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 160,	 0,	 160,	 },

3rd Change the following

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 255,	 0,	 255,	 },

4th Open conf/battle/client.conf then find and replace with this

// Maximum allowed 'level' value that can be sent in unit packets.
// Use together with the aura_lv setting to tell when exactly to show the aura.
// NOTE: You also need to adjust the client if you want this to work.
// NOTE: Default is 99. Values above 127 will probably behave incorrectly.
// NOTE: If you don't know what this does, don't change it!!!
max_lv: 99

// Level required to display an aura.
// NOTE: This assumes that sending max_lv to the client will display the aura.
// NOTE: aura_lv must not be less than max_lv.
// Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
//          will be sent as being all level 98, and only characters with level
//          150 or more will be reported as having level 99 and show an aura.
aura_lv: 255

// Units types affected by max_lv and aura_lv settings. (Note 3)
// Note: If an unit type, which normally does not show an aura, is
//       set it will obtain an aura when it meets the level requirement.
// Default: 0 (none)
client_limit_unit_lv: 1

5th Recompile & Start your server.

Note : I'm using 2012-04-10aragexe (I forgot where did I download this but credits to the owner, I can't find the download link so I reupload it)

Download here : https://www.mediafire.com/?z8bhj45qye8h0x0

does other player can see the aura?or only you?

Posted

 

This method fixed my aura problem.

Hope it works for anyone :D

 

1st Download this plugin and diff your client.

 

diff your client EnableAuraOverLvl99 

 

2nd Open src/map/battle.c and find 

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 160,	 0,	 160,	 },

3rd Change the following

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 255,	 0,	 255,	 },

4th Open conf/battle/client.conf then find and replace with this

// Maximum allowed 'level' value that can be sent in unit packets.
// Use together with the aura_lv setting to tell when exactly to show the aura.
// NOTE: You also need to adjust the client if you want this to work.
// NOTE: Default is 99. Values above 127 will probably behave incorrectly.
// NOTE: If you don't know what this does, don't change it!!!
max_lv: 99

// Level required to display an aura.
// NOTE: This assumes that sending max_lv to the client will display the aura.
// NOTE: aura_lv must not be less than max_lv.
// Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
//          will be sent as being all level 98, and only characters with level
//          150 or more will be reported as having level 99 and show an aura.
aura_lv: 255

// Units types affected by max_lv and aura_lv settings. (Note 3)
// Note: If an unit type, which normally does not show an aura, is
//       set it will obtain an aura when it meets the level requirement.
// Default: 0 (none)
client_limit_unit_lv: 1

5th Recompile & Start your server.

Note : I'm using 2012-04-10aragexe (I forgot where did I download this but credits to the owner, I can't find the download link so I reupload it)

Download here : https://www.mediafire.com/?z8bhj45qye8h0x0

does other player can see the aura?or only you?

 

All players can see others aura like this

sqk392.jpg

Posted

 

 

This method fixed my aura problem.

Hope it works for anyone :D

 

1st Download this plugin and diff your client.

 

diff your client EnableAuraOverLvl99 

 

2nd Open src/map/battle.c and find 

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 160,	 0,	 160,	 },

3rd Change the following

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 255,	 0,	 255,	 },

4th Open conf/battle/client.conf then find and replace with this

// Maximum allowed 'level' value that can be sent in unit packets.
// Use together with the aura_lv setting to tell when exactly to show the aura.
// NOTE: You also need to adjust the client if you want this to work.
// NOTE: Default is 99. Values above 127 will probably behave incorrectly.
// NOTE: If you don't know what this does, don't change it!!!
max_lv: 99

// Level required to display an aura.
// NOTE: This assumes that sending max_lv to the client will display the aura.
// NOTE: aura_lv must not be less than max_lv.
// Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
//          will be sent as being all level 98, and only characters with level
//          150 or more will be reported as having level 99 and show an aura.
aura_lv: 255

// Units types affected by max_lv and aura_lv settings. (Note 3)
// Note: If an unit type, which normally does not show an aura, is
//       set it will obtain an aura when it meets the level requirement.
// Default: 0 (none)
client_limit_unit_lv: 1

5th Recompile & Start your server.

Note : I'm using 2012-04-10aragexe (I forgot where did I download this but credits to the owner, I can't find the download link so I reupload it)

Download here : https://www.mediafire.com/?z8bhj45qye8h0x0

does other player can see the aura?or only you?

 

All players can see others aura like this

sqk392.jpg

 

aura works fine up to alternative job. but for 3rd job class that use other aura does not able to see by the other character.

below trans class.

Posted

 

 

 

This method fixed my aura problem.

Hope it works for anyone :D

 

1st Download this plugin and diff your client.

 

diff your client EnableAuraOverLvl99 

 

2nd Open src/map/battle.c and find 

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 160,	 0,	 160,	 },

3rd Change the following

{ "max_lv",	 &battle_config.max_lv,	 99,	 0,	 MAX_LEVEL,	 },
{ "aura_lv",	 &battle_config.aura_lv,	 255,	 0,	 255,	 },

4th Open conf/battle/client.conf then find and replace with this

// Maximum allowed 'level' value that can be sent in unit packets.
// Use together with the aura_lv setting to tell when exactly to show the aura.
// NOTE: You also need to adjust the client if you want this to work.
// NOTE: Default is 99. Values above 127 will probably behave incorrectly.
// NOTE: If you don't know what this does, don't change it!!!
max_lv: 99

// Level required to display an aura.
// NOTE: This assumes that sending max_lv to the client will display the aura.
// NOTE: aura_lv must not be less than max_lv.
// Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149
//          will be sent as being all level 98, and only characters with level
//          150 or more will be reported as having level 99 and show an aura.
aura_lv: 255

// Units types affected by max_lv and aura_lv settings. (Note 3)
// Note: If an unit type, which normally does not show an aura, is
//       set it will obtain an aura when it meets the level requirement.
// Default: 0 (none)
client_limit_unit_lv: 1

5th Recompile & Start your server.

Note : I'm using 2012-04-10aragexe (I forgot where did I download this but credits to the owner, I can't find the download link so I reupload it)

Download here : https://www.mediafire.com/?z8bhj45qye8h0x0

does other player can see the aura?or only you?

 

All players can see others aura like this

sqk392.jpg

 

aura works fine up to alternative job. but for 3rd job class that use other aura does not able to see by the other character.

below trans class.

 

Oh i didn't notice that because my server is only trans class but i'll try to figure out how to enable it on 3rd class.

  • 6 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...