SA-MP Forums Archive
How to add custom skins to your server? - 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: How to add custom skins to your server? (/showthread.php?tid=520176)



How to add custom skins to your server? - Zmith - 17.06.2014

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.


Re: How to add custom skins to your server? - Djole1337 - 17.06.2014

Not possible...


Re: How to add custom skins to your server? - Barnwell - 17.06.2014

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;
}



Re: How to add custom skins to your server? - SeniorGamer - 17.06.2014

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


Re: How to add custom skins to your server? - Zmith - 17.06.2014

Must be possible if I've seen it..


Re: How to add custom skins to your server? - Zmith - 18.06.2014

I understand that it's not possible now.


Re : How to add custom skins to your server? - S4t3K - 18.06.2014

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


Re: How to add custom skins to your server? - Threshold - 18.06.2014

Yes, but adding it for everyone? No.


Re: How to add custom skins to your server? - Arastair - 04.12.2014

Its not, but i think it should be