[FilterScript] [FS]Skin - 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: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] [FS]Skin (
/showthread.php?tid=447363)
[FS]Skin -
ScRipTeRi - 29.06.2013
REMOVED
Re: [FS]Skin -
Tuntun - 29.06.2013
Sure you made this?
Re: [FS]Skin -
Sellize - 29.06.2013
HHAHAHAHAHAHAAH YOU SIR FAIL! THIS COMES IN THE 0.3X SERVER PACKAGE
Re: [FS]Skin -
ScRipTeRi - 29.06.2013
@Sellize i dont understand you lol
Re: [FS]Skin -
kokoshkata - 29.06.2013
The FS which you posted is not made by you. It comes with the 0.3x server package.
Re: [FS]Skin -
TheChimpJr - 29.06.2013
You would even ' attempt ' to think someone would fall for you.
Re: [FS]Skin -
ScRipTeRi - 29.06.2013
yes is but have some player for dont know this and lets download here
Re: [FS]Skin -
TheChimpJr - 29.06.2013
Quote:
Originally Posted by ScRipTeRi
yes is but have some player for dont know this and lets download here
|
hahaha nope.. don't even think that you will be able to pull this off. You thought no one would notice and you released this, now that your little play got caught your making bullshit.
Re: [FS]Skin -
kokoshkata - 29.06.2013
As far as I know this section is for releasing your OWN filterscripts, unless you have permission from the creator of it to post it, which I doubt you have.
Re: [FS]Skin -
(SC)=Sky= - 30.06.2013
Why you deleted link? Had to leave .. orcum shame you deleted .. those who have looked at this topic skins game script
Dialog skin
pawn Код:
#include <a_samp>
#include <a_players>
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/skin", true) == 0)
{
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Skin Change", "Enter the skin id you wish to have below", "Confirm", "Cancel");
return 1;
}
return 0;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 1)
{
if(response)
{
new skin, skinmessage[64];
skin = strval(inputtext);
if(skin < 0 || skin > 299)
{
SendClientMessage(playerid, 0xFFFFFFFF, "{33FFCC}[INFO]: {C2C2C2}Avaible skin 0-299");
}
else
{
SetPlayerSkin(playerid, skin);
format(message, sizeof(skinmessage), "{33FFCC}[INFO]: {C2C2C2}Set Skin to %d.", skin ) ;
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Skin INFO", "{33FFCC}[INFO]: {C2C2C2}Skin set to %d", "Quit", "",message);
}
}
}
return 1;
}
Normal Skin Set
pawn Код:
CMD:skin(playerid, params[])
{
new skin;
if(sscanf(params, "i", skin)) return SendClientMessage(playerid, -1, "{FFAF00}Usage: {6EF83C}/skin {FFAF00}[Skin ID]");
if(skin > 299 || skin < 0) return SendClientMessage(playerid, -1,"{FFAF00}Invalid Skin {F81414}ID!");
SetPlayerSkin(playerid, skin);
PlayerPlaySound(playerid,1085,0.0,0.0,0.0);
return 1;
}