15.03.2012, 23:22
tenta:
PHP код:
CMD:irlocal(playerid, params[])
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COR_BRANCO,"Vocк nгo estб autorizado a usar este comando.");
if(sscanf(params, "s", local)) return SendClientMessage(playerid, COR_BRANCO,"Use: /irlocal [nome do local]");
format(file,sizeof(file), "/Locais/%s.ini",local);
if(!dini_Exists(file)) dini_Create(file);
x = dini_Float(file,"X");
y = dini_Float(file,"Y");
z = dini_Float(file,"Z");
interior = dini_Float(file,"Interior");//LINHA 233
format(xyz,sizeof(xyz), "%d.%d.%d",x,y,z);
if(IsPlayerInAnyVehicle(playerid))
{
SetVehiclePos(GetPlayerVehicleID(playerid), x,y,z);//LINHA 238
LinkVehicleToInterior(GetPlayerVehicleID(playerid), dini_Float(file,Interior));//LINHA 239
SendClientMessage(playerid, COR_BRANCO,"Vocк foi teleportado com sucesso!");
return 1;
}
else
{
SetPlayerPos(playerid, x,y,z);//LINHA 245
SendClientMessage(playerid, COR_BRANCO,"Vocк foi teleportado com sucesso!");
}
return 1;
}