How to add custom skins to your server?
#1

How do I add custom skins (skin mods) to my server, basically. It's been done before but I have no idea how. (Yes, I have tried ******). On a server I play they once had custom skin mods like prisoner, female cops etc. (owner is a fgt doesn't tell me how).

Please don't like that Global Custom Skins please.
Reply
#2

Not possible...
Reply
#3

what do you means Skin Moderator? is this 217!

Add This:

Код:
YCMD:adminduty(playerid, params[], help) {
	if(help) {
		SendClientMessage(playerid, X11_WHITE, "Toggles admin duty");
		return 1;
	}
	new msg[128];
	new aduty = GetPVarInt(playerid, "AdminDuty");
	if(aduty == 0) {
		format(msg,sizeof(msg),"%s %s is now on duty",getAdminName(playerid),GetPlayerNameEx(playerid, ENameType_AccountName));
		SendGlobalAdminMessage(X11_YELLOW, msg);
		if(EAdminFlags:GetPVarInt(playerid, "AdminFlags") == EAdminFlags_BasicAdmin) {
			aduty = 1;
		} else {
			aduty = 2;
		}
		
		if(GetPVarInt(playerid, "Sex") == 0) {
			SetPlayerSkin(playerid, 217);
		} else {
			SetPlayerSkin(playerid, 211);
		}
		SetPVarInt(playerid, "AdminDuty", aduty);
		//ShowAllNameTagsForPlayer(playerid, 1);
	} else {
		format(msg,sizeof(msg),"%s %s is now off duty",getAdminName(playerid),GetPlayerNameEx(playerid, ENameType_AccountName));
		SendGlobalAdminMessage(X11_YELLOW,msg);
		aduty = 0;
		SetPlayerSkin(playerid, GetPVarInt(playerid, "SkinID"));
		//ShowAllNameTagsForPlayer(playerid, 0);
		DeletePVar(playerid, "AdminDuty");
	}
	
	SetPlayerColor(playerid, getNameTagColour(playerid));
	return 1;
}
Reply
#4

Its not possible. The reason why character on other servers appeared to look different is because people attached objects onto them.
Reply
#5

Must be possible if I've seen it..
Reply
#6

I understand that it's not possible now.
Reply
#7

It is possible.
Read my tutorial about using custom models : https://sampforum.blast.hk/showthread.php?tid=515695
Reply
#8

Yes, but adding it for everyone? No.
Reply
#9

Its not, but i think it should be
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)