SA-MP Forums Archive
Help me with car tow - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help me with car tow (/showthread.php?tid=572538)



Help me with car tow - TheLegend1 - 29.04.2015

hello boys im trying to make a car tow with dialog but i cant make it please someone might help me out with this ?
here is /car tow

PHP код:
else if(!strcmp(tmp"tow"true3))
    {
     if(!
strlen(tmp2) || !IsNumeric(tmp2) || strlen(tmp2) > 5) return SCP(playerid"tow [vehicleID (/myvehicles)]");
     new 
themodel strval(tmp2);
        if(
themodel || themodel sizeof(Vehicles)) return SendClientError(playerid"Invalid vehicle ID!");
        if(
strcmp(PlayerName(playerid),Vehicles[themodel][carowner],false))
            return 
SendClientError(playerid"You do not own this vehicle!");
        if(
IsVehicleOccupied(themodel))
            return 
SendClientError(playerid"The vehicle is currently occupied!");
        new 
iPrice;
        if(
PlayerInfo[playerid][playerlvl] < 15iPrice 0;
        else 
iPrice 5000;
        if(
HandMoney(playerid) < iPrice) return SendClientError(playerid"You don't have enough money!");
        
ReloadVehicle(themodel);
        
SendClientMessage(playeridCOLOR_LIGHTGREY,"Info: Your vehicle has been towed!");
        if(
iPriceGameTextForPlayer(playerid"~r~$-5000"3000,1);
        
GivePlayerMoneyEx(playerid, -iPrice);
        
dini_IntSet("Gov_Land_Company.txt""bizcash"dini_Int("Gov_Land_Company.txt""bizcash") + 150);
        
format(iStrsizeof(iStr), "6[VEHICLE] %s has towed their %s."PlayerName(playerid), GetVehicleName(themodel));
        
iEcho(iStr);
    }