VSRO increase default MP

03/24/2016 15:26 vietnguyen09#1
Max lvl 120 without any stuff MP is 2110

how can I increase it by level to lvl?
03/24/2016 16:00 blapanda#2
Such things are hardcoded. (If presuming a proper C++ coding:) There is a class which will increase the given values (HP and MP) by a specific figure or even percentage based value. Like having 1200 HP and 1000 MP, the factor lets say 10 will be handled as a %-addition (1200HP / 100 * 10 =) additional 120 HP and 100 MP.

You firstly have to find WHAT value they used there (regular ++ method with int or a strict percentage value) and need to check that on your gameserver and client. Secondly, all on your own, since no one bothered with it, it will be almost impossible.
03/24/2016 16:12 vietnguyen09#3
Quote:
Originally Posted by blapanda View Post
Such things are hardcoded. (If presuming a proper C++ coding:) There is a class which will increase the given values (HP and MP) by a specific figure or even percentage based value. Like having 1200 HP and 1000 MP, the factor lets say 10 will be handled as a %-addition (1200HP / 100 * 10 =) additional 120 HP and 100 MP.

You firstly have to find WHAT value they used there (regular ++ method with int or a strict percentage value) and need to check that on your gameserver and client. Secondly, all on your own, since no one bothered with it, it will be almost impossible.
Quote:
<?php

echo pow(1.02,119) * 20 * 10;
First of all, thanks for your answer. I know it's hard, and its seem to be built-in in GameServer and Client Side. I really don't want to give up but I can see some Pserver can do that, its will creating many way of play which are really creative. So, where can I start?
03/25/2016 13:52 blapanda#4
Quote:
Originally Posted by vietnguyen09 View Post
First of all, thanks for your answer. I know it's hard, and its seem to be built-in in GameServer and Client Side. I really don't want to give up but I can see some Pserver can do that, its will creating many way of play which are really creative. So, where can I start?
By starting to debug the gameserver and client. There is no other way guessing it where it should be otherwise.
There is no table nor stored procedure which has this HP/MP increase inbuilt.

That will cost you some time for sure. You are mentioning that some servers have it, which ones? Get their client (if they are using the same SRO version, ofc) and... yea, start to compare, if nothing else works out (searching, assembling, tracking, etc).
03/25/2016 15:26 vietnguyen09#5
Fixed, my fault, I've upgraded char lvl in SMC so 120 still getting 20 stat point LOL