Peopleperson49 Posted October 15, 2012 Group: Members Topic Count: 219 Topics Per Day: 0.05 Content Count: 1181 Reputation: 141 Joined: 01/27/12 Last Seen: April 15 Share Posted October 15, 2012 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 Quote Link to comment Share on other sites More sharing options...
Prez Posted October 16, 2012 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 78 Reputation: 3 Joined: 12/06/11 Last Seen: November 17, 2024 Share Posted October 16, 2012 aura lvl 255 or u can modify it in src under battle.c i think or skill.c Quote Link to comment Share on other sites More sharing options...
Emistry Posted October 16, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted October 16, 2012 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. Quote Link to comment Share on other sites More sharing options...
Peopleperson49 Posted October 16, 2012 Group: Members Topic Count: 219 Topics Per Day: 0.05 Content Count: 1181 Reputation: 141 Joined: 01/27/12 Last Seen: April 15 Author Share Posted October 16, 2012 (edited) 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 October 16, 2012 by peopleperson49 Quote Link to comment Share on other sites More sharing options...
Winz Posted October 17, 2012 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 1479 Reputation: 174 Joined: 12/14/11 Last Seen: November 21, 2016 Share Posted October 17, 2012 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. Quote Link to comment Share on other sites More sharing options...
Peopleperson49 Posted October 17, 2012 Group: Members Topic Count: 219 Topics Per Day: 0.05 Content Count: 1181 Reputation: 141 Joined: 01/27/12 Last Seen: April 15 Author Share Posted October 17, 2012 (edited) 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 October 17, 2012 by peopleperson49 Quote Link to comment Share on other sites More sharing options...
Question
Peopleperson49
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.