21.10.2012, 00:52
Well, if you're working on the basis that 'points' are score, then this should work.
OnPlayerDeath:
OnPlayerDeath:
PHP код:
SetPlayerScore( killerid, GetPlayerScore( killerid) + 1 );
switch( GetPlayerScore( killerid) )
{
case 100:
{
// Level them up to level 1.
}
case 200:
{
// Level them up to level 2.
}
}