15.08.2012, 11:27
Quote:
bom sу para vips usarem voce teria q ter um sistema de vip... caso vc nao tenha eu nao saberei ajudar voc pois sou iniciante tbm
olha ai tem o code pro portao abrir testa ai fiz aqui mesmo e pro portao fechar eu nao sei mais aqui nesse link й um tutu e quando a pessoa vai pra longe do porta fecha sozim se vc conseguir entender https://sampforum.blast.hk/showthread.php?tid=360789 bom й isso ai fui se voc usar um sistema de vip me passa um comando dele que eu falo como faz suav pawn Код:
|
Quote:
if(strcmp(tmp, "vender", true) == 0) { if(IsPlayerConnected(playerid)) { GetPlayerName(playerid, playername, sizeof(playername)); if(PlayerInfo[playerid][pCarKey] == 0 && PlayerInfo[playerid][pCarKey2] == 0) { SendClientMessage(playerid, COLOR_GREY, "Vocк nгo tem um Carro VIP."); return true; } if(PlayerInfo[playerid][pCarKey] != vehid && PlayerInfo[playerid][pCarKey2] != vehid) { SendClientMessage(playerid, COLOR_GREY, "Esse nгo й seu Carro VIP."); return true; } if(PlayerInfo[playerid][pCarKey] != 0 && strcmp(playername, CarInfo[PlayerInfo[playerid][pVeiculo]][cOwner], true) == 0) { new car = PlayerInfo[playerid][pVeiculo]; CarInfo[car][cOwned] = 0; CarInfo[car][cModel] = 560; CarInfo[car][cColorOne] = 0; CarInfo[car][cColorTwo] = 0; GetPlayerName(playerid, sendername, sizeof(sendername)); strmid(CarInfo[car][cOwner], "Dealership", 0, strlen("Dealership"), 999); GivePlayerMoney(playerid,CarInfo[car][cValue]); PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0); format(string, sizeof(string), "~w~Carro Vip Vendido Por: ~n~~g~$%d", CarInfo[car][cValue]); GameTextForPlayer(playerid, string, 10000, 3); RemovePlayerFromVehicleEx(playerid); Controle(playerid, 1); PlayerInfo[playerid][pCarKey] = 0; PlayerInfo[playerid][pVeiculo] = 0; SaveCars(); return true; } |