21.04.2013, 03:16
(
Последний раз редактировалось horsemeat; 21.04.2013 в 13:34.
)
hello I Have a question about this color
is it a string or is it a variable if it is nether the tell what it is
I would like to make a command like this
is a hex
Код:
0xFF00FF00
I would like to make a command like this
pawn Код:
CMD:changecolor(playerid, params[])
{
new color;
if(sscanf(params,"i",color))
{
return SendClientMessage(playerid, RED, "SYNTAX /changecolor [color]");
}
SendClientMessage(playerid,color,"I like the color you picked");
return 1;
}
SOLVED
Код:
0xFF00FF00
Next question
how do you save a hex diniSOLVED
dini_Intset works just fine