19.04.2019, 00:45
dialog compra
OnPlayerDisconnect
como faзo pra destruir?
e depois como faзo pra criar qnd ele conectar? alguem ajuda?
PHP Code:
case 2000:
{
if(!response) return RemovePlayerFromVehicle(playerid);
new money = GetPlayerMoney(playerid);
if(money < Valor_Manana)
{
RemovePlayerFromVehicle(playerid);
SCM(playerid, -1, "Voce Nao tem dinheiro suficiente para esse veiculo");
}
GivePlayerMoney(playerid, -Valor_Manana);
new vehid = CreateVehicle(410, 2127.4617,-1141.9835,24.9416,5.4496, 1, 1, -1);
PutPlayerInVehicle(playerid, vehid, 0);
new file[50];
format(file, 50, "Veiculos/%s.ini", PegarNome(playerid));
if( !DOF2_FileExists(file) )
{
DOF2_CreateFile(file);
DOF2_SetString(file, "Dono", PegarNome(playerid));
DOF2_SetInt(file, "Modelo", 410);
DOF2_SetFloat(file, "CordX",2127.4617);
DOF2_SetFloat(file, "CordY",-1141.9835);
DOF2_SetFloat(file, "CordZ",24.9416);
DOF2_SetFloat(file, "CordA",5.4496);
DOF2_SetInt(file, "Cor1", 1);
DOF2_SetInt(file, "Cor2", 1);
DOF2_SaveFile();
}
}
PHP Code:
new file[50];
format(file, 50, "Veiculos/%s.ini", PegarNome(playerid));
if( !DOF2_FileExists(file) )
{
DOF2_SetString(file, "Dono", PegarNome(playerid));
DOF2_SetInt(file, "Modelo", 410);
DOF2_SetFloat(file, "CordX",2127.4617);
DOF2_SetFloat(file, "CordY",-1141.9835);
DOF2_SetFloat(file, "CordZ",24.9416);
DOF2_SetFloat(file, "CordA",5.4496);
DOF2_SetInt(file, "Cor1", 1);
DOF2_SetInt(file, "Cor2", 1);
DOF2_SaveFile();
}
e depois como faзo pra criar qnd ele conectar? alguem ajuda?