How to fixe that !

Newbie Spellweaver
Joined
Sep 30, 2006
Messages
34
Reaction score
0
Hi , all , i creat my server ( only on my pc for now ) and i have differently bug to fixe :

1) The damage :
i kill jelly bean ( exemple : 11 dammage , 11 damage , 11 ,11 ,11 , miss ,11,11)
i kill choropy ( exemple : 8 ,8,8,8,miss,8,8,8 )

i would like differently damage like that ( 11,10,11,12 for exemple )

2 ) Point stat : its work , but i'm lvl 3 and i up for lvl 250 ( by the command Gm ) and i have always my stat points lvl 3 : 27 i think , how to fixe that ?

Thanks
 
1) just change your stats
2) just change your stats in navicat or what you use
 
2)
open PlayerDamage.cpp
find
Code:
[B]unsigned int critical = GServer->RandNumber(1,256 );[/B]
add above
Code:
unsigned int testing123 = GServer->RandNumber(1,30 );

find
Code:
        if( PlayerInfo->Level <10 )
        {
            hitpower -= GServer->GetMobDefense( thismon )/2;
            hitpower /= 2;
        }
        else
        {
            hitpower -= GServer->GetMobDefense( thismon )/2;
            hitpower /= 2;
        }

replace with
Code:
        if( PlayerInfo->Level <10 )
        {
            hitpower -= GServer->GetMobDefense( thismon )/2;
            hitpower /= 2;
            hitpower += testing123;
        }
        else
        {
            hitpower -= GServer->GetMobDefense( thismon )/2;
            hitpower /= 2;
            hitpower += testing123;
        }
 
Thanks so Much Toxin 01 !

You have the same for monster damage please ! Thanks !


i found another bug in the database : "fullserver_16"

i'm teleport at Luna clan field and i saw that : ( look life of the monster )

cixis - How to fixe that ! - RaGEZONE Forums


The monster are full life but i we can see only 1/3 life on this map .

Thanks to find how to fixe that ! thanks so much for the help !
 
Back