[Question] Is there a way Shops can sell clothes?
#1

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
Reply
#2

Not possible
Reply
#3

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
Reply
#4

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
Reply
#5

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)