- 0
[GF/RP] problema comanda /tow
-
Similar Content
-
Recently Browsing 0 members
- No registered users viewing this page.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.
Question
Papana
am comanda /tow
dar nu merge
..
are /tow ls /tow lv
io vreau o comanda normala cand scriu /tow sa remorchez masina ..
if(strcmp(cmd, "/tow", true) == 0) { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /tow [LS or SF]"); return 1; } new newcar = GetPlayerVehicleID(playerid); new x_nr[256]; x_nr = strtok(cmdtext, idx); if(strcmp(x_nr,"ls",true) == 0) { if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16) { if(!IsATowcar(newcar)) { if(IsTrailerAttachedToVehicle(GetPlayerVehicleID(playerid))) { if(PlayerInfo[playerid][pTow] >= 1) { PlayerInfo[playerid][pTow] -= 1; CP[playerid] = 111; SetPlayerCheckpoint(playerid, 2412.4646,-1426.3083,23.9848, 5.0); SendClientMessage(playerid, COLOR_YELLOW, "Drive to Warehouse to destroy the towed car."); } else { SendClientMessage(playerid, COLOR_GRAD1, " You cannot tow any car till PayDay."); } } else { SendClientMessage(playerid, COLOR_GRAD1, " You dont towed a car !"); } } else { SendClientMessage(playerid, COLOR_GRAD1, " You are not in a Tow Truck !"); } } } } new x_nr[256]; new newcar = GetPlayerVehicleID(playerid); x_nr = strtok(cmdtext, idx); if(strcmp(x_nr,"sf",true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16) { if(!IsATowcar(newcar)) { if(IsTrailerAttachedToVehicle(GetPlayerVehicleID(playerid))) { if(PlayerInfo[playerid][pTow] >= 1) { PlayerInfo[playerid][pTow] -= 1; CP[playerid] = 111; SetPlayerCheckpoint(playerid, 1617.2562,-2314.1616,13.5537, 5.0); SendClientMessage(playerid, COLOR_YELLOW, "Drive to Warehouse to destroy the towed car."); } else { SendClientMessage(playerid, COLOR_GRAD1, " You cannot tow any car till PayDay."); } } else { SendClientMessage(playerid, COLOR_GRAD1, " You dont towed a car !"); } } else { SendClientMessage(playerid, COLOR_GRAD1, " You are not in a Tow Truck !"); } } } return 1; } }1 answer to this question
Recommended Posts