15.01.2015, 17:38
Hola amigos de samp hice una pequeсa funciуn para que se vea el score encima de la cabeza del skin, con la funcion del score todo bien.
Pero cuando quiero agregarle la condicion de PING que es GetPlayerPing(playerid) de esta manera:
me sale esto..
no se que estoy haciendo mal
pawn Код:
new Text3D:mylabel[MAX_PLAYERS];
new gstring[128];
mylabel[playerid] = Create3DTextLabel("Score: %d",0x008080FF, 30.0, 40.0, 50.0, 40.0, 0,GetPlayerScore(playerid));
Attach3DTextLabelToPlayer(mylabel[playerid], playerid, 0.0, 0.0, 0.7);
Update3DTextLabelText( mylabel[ GetPlayerScore( playerid ) ], -1, gstring );
pawn Код:
new Text3D:mylabel[MAX_PLAYERS];
new gstring[128];
mylabel[playerid] = Create3DTextLabel("Score: %d Ping: %d",0x008080FF, 30.0, 40.0, 50.0, 40.0, 0,GetPlayerScore(playerid),GetPlayerPing(playerid) );
Attach3DTextLabelToPlayer(mylabel[playerid], playerid, 0.0, 0.0, 0.7);
Update3DTextLabelText( mylabel[ GetPlayerScore( playerid ) & GetPlayerPing(playerid) ], -1, gstring );
pawn Код:
C:\Users\User\Desktop\LADMIN\(1365) : warning 202: number of arguments does not match definition