16.10.2012, 04:25
Mudar quantidade de dinheiro dos players selecionados
PHP Code:
stock setDefaultMoney ( money , ... ) {
static
pInt
;
pInt = numargs ( ) - 1;
for ( ; ( pInt > 0 ) ; -- pInt ) {
ResetPlayerMoney ( getarg ( _: ( pInt ) ) ) ;
GivePlayerMoney ( getarg ( _: ( pInt ) ) , money ) ;
}
return true ;
}