Help with Private Car System - 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 with Private Car System (
/showthread.php?tid=578206)
Help with Private Car System -
XStormiest - 17.06.2015
Thanks a lot
Re: Help with Private Car System -
XStormiest - 17.06.2015
wow,.... an entire comunity of scripters and nobody knows the problem....
Re: Help with Private Car System -
Ritzy2K - 17.06.2015
wow... do you know rules? waiting 24 hours before shitposting?
Re: Help with Private Car System -
XStormiest - 17.06.2015
sorry.... but nobody actually gives a fuck about me or me posting or never help me.. ok ban me!
Re: Help with Private Car System -
AndySedeyn - 17.06.2015
I don't see the point of this:
PHP код:
if(ServerCars[vehicle][cOwned] == 1) SendClientMessage(playerid, COLOR_RED, string);
if(ServerCars[vehicle][cOwned] == 1)
{
if(strcmp(GetUserName(playerid), ServerCars[vehicle][cOwnername], false) )
{
RemovePlayerFromVehicle(playerid);
}
}
You check the same thing twice and give it a different result. Merge it together.
PHP код:
if(ServerCars[vehicle][cOwned])
{
SendClientMessage(playerid, COLOR_RED, string);
if(strcmp(GetUserName(playerid), ServerCars[vehicle][cOwnername], false))
{
RemovePlayerFromVehicle(playerid);
}
}
And I am unsure of what your actual problem is. Probably because I don't know what ""Acest %s apartine jucatorului %s"" means.
Re: Help with Private Car System -
rappy93 - 17.06.2015
""Acest %s apartine jucatorului %s"" means "This %s belongs to player %s"".
PS: I think the problem was with that duplicate check you mentioned above.
Re: Help with Private Car System -
XStormiest - 17.06.2015
Nope, still the same....
I just can't get it ....why it doesn't work.., that message means: "This car belongs to x person"
Re: Help with Private Car System -
XStormiest - 18.06.2015
BUMP!!! Anybody?
Re: Help with Private Car System -
XStormiest - 19.06.2015
......Can anybody try to give me some help?
Re: Help with Private Car System -
Threshold - 19.06.2015
What's the fucking problem? Doesn't get removed? Doesn't get the message? What!?