12.06.2015, 14:40
(
Последний раз редактировалось Wingman; 12.06.2015 в 16:57.
)
Here is my bandana system script
I want to know how to make a cmd which takes a player setted color (/setgangcolor [Color] which please should restricted to R6 gang members ) and when it gets that setted color it does SetPlayerColor to hex value of which color it said. Will +Rep
Quote:
if(strcmp(cmd, "/bandana", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pMember] == 15) // your factions id here { SetPlayerAttachedObject(playerid, 0, 18912, 2, 0.078534, 0.041857, -0.001727, 268.970458, 1.533374, 269.223754); SendClientMessage(playerid, COLOR_GREEN, "Use /bandanaoff to take it off"); } else if(PlayerInfo[playerid][pMember] == 1) // your factions id here { RemovePlayerAttachedObject(playerid,0); } else { SendClientMessage(playerid, COLOR_RED, "You are not a faction member"); } } return 1; } if(strcmp(cmd,"/bandanaoff", true) == 0) { if(IsPlayerConnected(playerid)) { if(IsPlayerAttachedObjectSlotUsed(playerid, 0)) { RemovePlayerAttachedObject(playerid, 0); SendClientMessage(playerid, COLOR_RED, "You removed your bandana"); } } return 1; |