skenywitdafer 0 Posted May 28, 2013 can anyone teach me on how to add HP on a certain character? Quote Share this post Link to post Share on other sites
0 Mystery 594 Posted May 29, 2013 You can do this VIA your SQL DB. The table you're looking for should be 'char' and you look for the column "max_hp": `max_hp` mediumint(8) unsigned NOT NULL default '0' and change accordingly. Quote Share this post Link to post Share on other sites
0 Patskie 88 Posted June 2, 2013 (edited) If you want SQL version then try the post above, if you want it via script then something like this : Hp = Hp + 500; // Add 500 hit points on current amount of hit points.MaxHp = MaxHP + 500; // Add 500 hit points on maximum available amount of hit points. Hp - Current amount of hit points.MaxHP - Maximum amount of hit points. Edited June 2, 2013 by Patskie Quote Share this post Link to post Share on other sites
0 jaBote 438 Posted June 2, 2013 Main problems on those answers is (i believe), maxHP returns to normal when recalculated, say a VIT change or any other thing. Don't know a way of solving that issue, though. Quote Share this post Link to post Share on other sites
0 mleo1 36 Posted June 2, 2013 1 create item and2 use itemeffect function Quote Share this post Link to post Share on other sites
0 cJei 4 Posted June 3, 2013 Main problems on those answers is (i believe), maxHP returns to normal when recalculated, say a VIT change or any other thing. Don't know a way of solving that issue, though. Yes, I tried to edit the max_hp in char table but the hp still revert back when I logged in. 1 create item and 2 use itemeffect function I think this will do, or create a passive skill that will add HP to your char (might work but, never tried this though) Quote Share this post Link to post Share on other sites
0 Patskie 88 Posted June 3, 2013 Maybe you set a maximum hp that exceeds the max_hp config here Quote Share this post Link to post Share on other sites
can anyone teach me on how to add HP on a certain character?
Share this post
Link to post
Share on other sites