[FilterScript] [FS]Skin
#1

REMOVED
Reply
#2

Sure you made this?
Reply
#3

HHAHAHAHAHAHAAH YOU SIR FAIL! THIS COMES IN THE 0.3X SERVER PACKAGE
Reply
#4

@Sellize i dont understand you lol
Reply
#5

The FS which you posted is not made by you. It comes with the 0.3x server package.
Reply
#6

You would even ' attempt ' to think someone would fall for you.
Reply
#7

yes is but have some player for dont know this and lets download here
Reply
#8

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.
Reply
#9

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.
Reply
#10

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


Forum Jump:


Users browsing this thread: 1 Guest(s)