SA-MP Forums Archive
[Question] Is there a way Shops can sell clothes? - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [Question] Is there a way Shops can sell clothes? (/showthread.php?tid=118815)



[Question] Is there a way Shops can sell clothes? - WolfeX - 05.01.2010

You know how in GTA SA Singleplayer you can buy Clothes from binco and sub urban and stuff. is it possible to put that in SAMP? Reply here


Re: [Question] Is there a way Shops can sell clothes? - [DDC]Delight - 05.01.2010

Not possible


Re: [Question] Is there a way Shops can sell clothes? - [DDC]Delight - 05.01.2010

Quote:
Originally Posted by WolfeX
Quote:
Originally Posted by TisjuBoY
Not possible
Why not? Gimme a reason XD
Cuz with SA single player, you play with CJ and you can EDIT him.
But in SAMP there are many skins, and clothes can't be saved, nor clothes can be equiped by all those skins


Re: [Question] Is there a way Shops can sell clothes? - ClanDBZVegeta - 05.01.2010

its possible to script it
something like this
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/clothes", cmdtext, true, 10) == 0)
    {
        GivePlayerMoney(playerid, -100);
        SetPlayerSkin(playerid, 0);
        return 1;
    }
    return 0;
}
:P


Re: [Question] Is there a way Shops can sell clothes? - [DDC]Delight - 05.01.2010

Quote:
Originally Posted by WolfeX
You know how in GTA SA Singleplayer you can buy Clothes from binco and sub urban and stuff. is it possible to put that in SAMP? Reply here
No request for command..?

Quote:
Originally Posted by ClanDBZVegeta
its possible to script it
something like this
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/clothes", cmdtext, true, 10) == 0)
    {
        GivePlayerMoney(playerid, -100);
        SetPlayerSkin(playerid, 0);
        return 1;
    }
    return 0;
}
:P
And this only changes skin.. doesnt add other clothes to player