Cmd Help !
#1

Hey I made that command in my script :

Work , No error's compiled clean'd , But when I /vstorage on server nothing... That's doesnt even tell me that's not unknown cmd... What to do ? How to fix that please ?

Code:
CMD:vstorage(playerid, params[])
{
    new vstring[1024];
    for(new i; i < MAX_PLAYERVEHICLES; i++)
    {
        if(PlayerVehicleInfo[playerid][i][pvId] > INVALID_PLAYER_VEHICLE_ID)
            format(vstring, sizeof(vstring), "%s\n%s", vstring, VehicleName[PlayerVehicleInfo[playerid][i][pvModelId] - 400]);

        else if(PlayerVehicleInfo[playerid][i][pvImpounded] == 1)
            format(vstring, sizeof(vstring), "%s\n%s (impounded)", vstring, VehicleName[PlayerVehicleInfo[playerid][i][pvModelId] - 400]);

        else
            format(vstring, sizeof(vstring), "%s\nEmpty", vstring);
    }
    return 1;
}
Reply
#2

Well you command isn't returning something, so it does work, but the string you made (vstring) doesn't show up somewhere, I think you should put it inside a dialog or message, if this is what you want.
Reply
#3

if ur using %s it cannot be used for the string u created (facepalm)

u have to put that in something like

SendClientMessage(pid,col,vstrong);
Reply
#4

SO HOW TO MAKE THE NEW code will work please ? !
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)