12.10.2011, 00:05
Quote:
o problema nao e necessariamente no new nome,mais sim na linha logo acima,veja:
pawn Код:
pawn Код:
|
pawn Код:
if(!strcmp(cmdtext, "/rc", true))
{
if(IsPlayerAdmin(playerid))
{
for(new i = 0; i <= MAX_PLAYERS; i++)
{
if(IsPlayerInAnyVehicle(i))
{
new nome[MAX_PLAYER_NAME]; //aki
GetPlayerName(playerid, nome, MAX_PLAYER_NAME);
new msg[80];
format(msg, sizeof(msg), "O Admin %s Respawnou os veiculos", nome);
SendClientMessageToAll(-1, msg);
for(new v = 0; v <= MAX_VEHICLES; v++)
{
SetVehicleToRespawn(v);
}
}
}
}
return 1;
}