• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Vocations health i mana

Duxi

Member
Joined
Aug 31, 2010
Messages
218
Reaction score
5
Witam.
Poszukuje komendy lub chociaż reguły przeliczania many i hp dla gracza w zależności od lvl i od profesji.
Widziałem to ostatnio gdzieś na forum jednak po długich poszukiwaniach nie znalazłem nic.
Prosze o pomoc.
 
na 8 jest 35 many i chyba 170hp a dalej dodajesz, możesz walnąć lvl=lvl-8 i wtedy vochpgain*lvl+hpat8 i vocmanagain*lvl+mpat8 i działa

knight dostaje 5mp a sorc i drd 5hp, tyle pamiętam resztę na wiki sprawdź czy coś?
 
UPDATE `evo`.`players` SET `health` = 185 + (`players`.`level` - 8) * 5 WHERE `players`.`vocation` =1;
UPDATE `evo`.`players` SET `healthmax` = 185 + (`players`.`level` - 8) * 5 WHERE `players`.`vocation` =1;
UPDATE `evo`.`players` SET `mana` = 35 + (`players`.`level` - 8) * 30 WHERE `players`.`vocation` =1;
UPDATE `evo`.`players` SET `manamax` = 35 + (`players`.`level` - 8) * 30 WHERE `players`.`vocation` =1;


UPDATE `evo`.`players` SET `health` = 185 + (`players`.`level` - 8) * 5 WHERE `players`.`vocation` =2;
UPDATE `evo`.`players` SET `healthmax` = 185 + (`players`.`level` - 8) * 5 WHERE `players`.`vocation` =2;
UPDATE `evo`.`players` SET `mana` = 35 + (`players`.`level` - 8) * 30 WHERE `players`.`vocation` =2;
UPDATE `evo`.`players` SET `manamax` = 35 + (`players`.`level` - 8) * 30 WHERE `players`.`vocation` =2;


UPDATE `evo`.`players` SET `health` = 185 + (`players`.`level` - 8) * 10 WHERE `players`.`vocation` =3;
UPDATE `evo`.`players` SET `healthmax` = 185 + (`players`.`level` - 8) * 10 WHERE `players`.`vocation` =3;
UPDATE `evo`.`players` SET `mana` = 35 + (`players`.`level` - 8) * 15 WHERE `players`.`vocation` =3;
UPDATE `evo`.`players` SET `manamax` = 35 + (`players`.`level` - 8) * 15 WHERE `players`.`vocation` =3;


UPDATE `evo`.`players` SET `health` = 185 + (`players`.`level` - 8) * 15 WHERE `players`.`vocation` =4;
UPDATE `evo`.`players` SET `healthmax` = 185 + (`players`.`level` - 8) * 15 WHERE `players`.`vocation` =4;
UPDATE `evo`.`players` SET `mana` = 35 + (`players`.`level` - 8) * 5 WHERE `players`.`vocation` =4;
UPDATE `evo`.`players` SET `manamax` = 35 + (`players`.`level` - 8) * 5 WHERE `players`.`vocation` =4;
Tak? (Robie na bazie testowej :) )
 
Last edited:
Back
Top