Vehicle color and paintjob!
#7

@Luis You forget:

Quote:

#include <dini> - http://dracoblue.net/downloads/dini/
Quote:

public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
{
VehicleInfo[vehicleid][paintjob] = paintjobid;
new file[50],name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,MAX_PLAYER_NAME);
format(file,sizeof(file),"Server TUNE/%s.ini",name);
if(!dini_Exists(file)){
dini_Create(file);
dini_IntSet(file,"Paintjob",paintjobid);
}else{
dini_IntSet(file,"Paintjob",paintjobid);
}
return 1;
}

and

Quote:

OnVehicleRespray(playerid, vehicleid, color1, color2)
{
VehicleInfo[vehicleid][vcolor1] = color1;
VehicleInfo[vehicleid][vcolor2] = color2;
new file[50],name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,MAX_PLAYER_NAME);
format(file,sizeof(file),"Server/Tune/%s.ini",name);
if(!dini_Exists(file)){
dini_Create(file);
dini_IntSet(file,"vcolor1",color1);
dini_IntSet(file,"vcolor2",color2);
}else{
dini_IntSet(file,"vcolor1",color1);
dini_IntSet(file,"vcolor2",color2);
}
return 1;
}

Reply


Messages In This Thread
Vehicle color and paintjob! - by kalanerik99 - 20.05.2015, 17:46
Re: Vehicle color and paintjob! - by kyriakos587 - 20.05.2015, 17:53
Re: Vehicle color and paintjob! - by Luis- - 20.05.2015, 17:56
Re: Vehicle color and paintjob! - by Konstantinos - 20.05.2015, 17:58
Re: Vehicle color and paintjob! - by kalanerik99 - 20.05.2015, 17:59
Re: Vehicle color and paintjob! - by kalanerik99 - 20.05.2015, 18:01
Re: Vehicle color and paintjob! - by kyriakos587 - 20.05.2015, 18:05
Re: Vehicle color and paintjob! - by kalanerik99 - 20.05.2015, 18:06
Re: Vehicle color and paintjob! - by Konstantinos - 20.05.2015, 18:15
Re: Vehicle color and paintjob! - by kalanerik99 - 20.05.2015, 18:55

Forum Jump:


Users browsing this thread: 1 Guest(s)