Posts: 153
Threads: 64
Joined: Nov 2013
Quote:
Originally Posted by Loot
I'm not going to create that code for you, make a search at the forum about DM GameModes, and if you're lucky you might find something similar to that there.
EDIT:
Find out where you detecting the skinid
pawn Код:
if(skinid[playerid == 286) { GameTextForPlayer(playerid, "Cop", 3000, 3); // etc }
And to change the color, detect what skinid he uses and set his color accordinaly:
pawn Код:
public OnPlayerSpawn(playerid) { if(skinid[playerid == 286) { SetPlayerColor(playerid, 0x20B2AAFF); // etc } return 1; }
|
Thanks and can you tell me the ingame Mapping ?