Jump to content
  • 0

Max base level to activate character aura?


Peopleperson49

Question


  • Group:  Members
  • Topic Count:  219
  • Topics Per Day:  0.05
  • Content Count:  1181
  • Reputation:   141
  • Joined:  01/27/12
  • Last Seen:  

For servers that has a maximum base level of 255 how do they get the aura to not activate till they reach 255. Whats the trick?

Peopleperson49

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  78
  • Reputation:   3
  • Joined:  12/06/11
  • Last Seen:  

aura lvl 255 or u can modify it in src under battle.c i think or skill.c

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

trunk/conf/battle/client.conf

// 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

but i think newer client doesnt support aura display for higher level yet...not sure.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  219
  • Topics Per Day:  0.05
  • Content Count:  1181
  • Reputation:   141
  • Joined:  01/27/12
  • Last Seen:  

Do I need to modify this below? All I found was this, but I'm not sure if that is what I need to modify. I don't want to experment with my server without a high level of confidence! I think just modifying the conf/battle/client.txt would be sufficient to modify this though. Thanks.

Peopleperson49

src/map/battle.c:

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

Edited by peopleperson49
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  1479
  • Reputation:   174
  • Joined:  12/14/11
  • Last Seen:  

as far as I know, this is the hardcore one, if Emistry's trick doesn't work. dunno, I used Emistry's trick and it works. for players over lv 100 they will have floating spirits near their body, going from the feet to their had, but there's no Aura ring. when they hit 255 (100%), the aura ring appears.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  219
  • Topics Per Day:  0.05
  • Content Count:  1181
  • Reputation:   141
  • Joined:  01/27/12
  • Last Seen:  

I did that also and other players cannot see the aura. However, for some reason the player can still see their own aura. I was just wondering if there was a way to eliminate that. An old client that I used to have allowed you to set what level you wanted the auras to activate. Of course back then there were no third classes, but it did allow you to set different max levels for non-trans and trans classes. Maybe that would be a good diff to make if possible. I just think that a limit of 127 is too low for most servers now days since thirds go to 150. I can't even make it so my trans classes can go to 150 without arua issues. For mid/high rate servers that go greater than 150 its even more of an issue.

Peopleperson49

Edited by peopleperson49
Link to comment
Share on other sites

Join the conversation

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

Guest
Answer this question...

×   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.

×
×
  • Create New...