<When I go on the the server not loaded my car > URGENT!
#1

so I worked vehicle purchase and everything is fine except when I we go to the server and not the obvious vehicle just me one good all by and I thought everything was fine when we go out and do it again what that is please help, if you I get it. thanks

Sorry for my bad English.
Reply
#2

URGENT! you speak french ??
post here
http://forum.sa-mp.com/forumdisplay.php?f=30
Reply
#3

I don't speak french
Reply
#4

Are you saying the vehicle's dont return to the original place? Or are the vehicles owned, but you leave and they aren't owned anymore? is this before or after you restart?


Have you got the correct folder in scriptfiles, or have you got the database set up correctly
Reply
#5

yes they don't return to the original place they just gone when I back to the server and yes I have correct folder in scriptfiles just once they load corectly but not anymore If you now what I mean. Thx
Reply
#6

please anyone
Reply
#7

Do you mean owned cars?
Or server cars?

im having trouble understanding you..
Reply
#8

If it's a roleplay script for Cars like, LSPD -- Write this code into the script

CMD:createpvehicle(playerid, params[])
{
if (PlayerInfo[playerid][pAdmin] < 4)
{
SendClientMessageEx(playerid, COLOR_GREY, " You are not allowed to use this command.");
return 1;
}

new string[128], giveplayerid, modelid, color1, color2;
if(sscanf(params, "uddd", giveplayerid, modelid, color1, color2)) return SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /createpvehicle [playerid] [modelid] [color 1] [color 2]");

if(color1 < 0 || color1 > 126) { SendClientMessageEx(playerid, COLOR_GREY, " Color Number can't be below 0 or above 126 !"); return 1; }
if(color2 < 0 || color2 > 126) { SendClientMessageEx(playerid, COLOR_GREY, " Color Number can't be below 0 or above 126 !"); return 1; }
if(modelid < 400 || modelid > 611) { SendClientMessageEx(playerid, COLOR_GREY, " Vehicle Number can't be below 400 or above 611 !"); return 1; }
new playervehicleid = GetPlayerFreeVehicleId(giveplayerid);
if(playervehicleid == -1) return SendClientMessageEx(playerid, COLOR_GREY, "ERROR: That player can't have more cars.");
new Float:X,Float:Y,Float:Z;
GetPlayerPos(giveplayerid,X,Y,Z);
new Float:Angle;
GetPlayerFacingAngle(giveplayerid,Angle);
new car = CreatePlayerVehicle(giveplayerid, playervehicleid, modelid, X, Y, Z, Angle, color1, color2, 0);
if(car == INVALID_PLAYER_VEHICLE_ID)
{
SendClientMessageEx(playerid, COLOR_GREY, "ERROR: Something went wrong and the car didn't get created.");
}
else
{
format(string, sizeof(string), " Vehicle successfully created with ID %d.", car);
SendClientMessageEx(playerid, COLOR_GRAD1, string);
}

format(string, sizeof(string), "%s has created a %s for %s (Color 1: %d | Color 2: %d).", GetPlayerNameEx(playerid), GetVehicleName(car), GetPlayerNameEx(giveplayerid), color1, color2);
Log("logs/playervehicle.log", string);
return 1;
}
Reply
#9

yes owned car
Reply
#10

please help anyone
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)