save car color help ? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: save car color help ? (
/showthread.php?tid=202518)
save car color help ? -
baba59 - 24.12.2010
bonjour , je cherche a sauvegarder ma couleur changer avec /color
j'ai le script smod qui sauvegarde le tuning / couleur changй aprиs le destroy de cette voiture
mais avec /color , la couleur n'est pas sauvegarder svp aider moi
le code du /color :
Код:
:
if(strcmp(cmd, "/color", true) == 0){
if(IsPlayerInAnyVehicle(playerid))
{
new color1, color2;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /color >color1< >color2<");
color1 = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /color >color1< >color2<");
color2 = strval(tmp);
ChangeVehicleColor(GetPlayerVehicleID(playerid), color1, color2);
}
else
{
SendClientMessage(playerid,COLOR_RED,"Tu n'est pas dans une voiture");
}
return 1;
}