SA-MP Forums Archive
save player color - 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: save player color (/showthread.php?tid=408491)



save player color - Fernado Samuel - 18.01.2013

Removed


Re: save player color - LarzI - 18.01.2013

By using GetPlayerColor and queries.


Re: save player color - niels44 - 18.01.2013

this is a example for dini:

pawn Код:
new file[300];
format(file,sizeof(file),"Colors%s", name);
dini_IntSet(file, "Color", GetPlayerColor(playerid));
SendClientMessage(playerid, COLOR_YELLOW, "Color saved successfully");
that should work for saving, and for loading simply use:

pawn Код:
new file[300], Color;
format(file,sizeof(file),"Colors%s", name);
Color = dini_Int(file, "Color");
SetPlayerColor(playerid, Color);
SendClientMessage(playerid, COLOR_YELLOW, "Color Loaded successfully");
something like that should work


Re: save player color - Fernado Samuel - 18.01.2013

Removed


Re: save player color - niels44 - 18.01.2013

im not familiar with mysql, sorry, but search on ****** and im sure you find it


Re: save player color - LarzI - 18.01.2013

You would have to insert the player's color as a value into your database and table the first time, then update it if it's already set. All this would be done with a query.


Re: save player color - Fernado Samuel - 18.01.2013

Removed


Re: save player color - azzerking - 18.01.2013

First yo need to add a new column in your database table called color then
Add this to query:

pawn Код:
mysql_query("INSERT `%s` INTO `color` WHERE User = %d", color, pname);
Just readjust this to fit in your query.




Re: save player color - Fernado Samuel - 19.01.2013

Removed


Re: save player color - azzerking - 19.01.2013

HEX_CODE will be saved into database.

COLOR_BLUE is a variable holding the value of the HEX CODE.