Juqt a small question about random func
#1

When I compile my script I get this:

Код:
C:\Documents and Settings\Sйbastien\Mes documents\GTA\samp02Xserver.win32\gamemodes\BCL-RP.pwn(3146) : warning 204: symbol is assigned a value that is never used: "RandomFemaleSkin"
C:\Documents and Settings\Sйbastien\Mes documents\GTA\samp02Xserver.win32\gamemodes\BCL-RP.pwn(3140) : warning 204: symbol is assigned a value that is never used: "RandomMaleSkin"
But the code seems good and it works IG :/ What's wrong?
pawn Код:
stock RandomSkin(playerid)
{
    if(PlayerInfo[playerid][pSex] == 1)
    {
        new RandomMaleSkin[7][] = { {60}, {66}, {101}, {128}, {170}, {180}, {188} };
        new rand = random(sizeof(RandomMaleSkin));
        SetPlayerSkin(playerid, rand);
    }
    else if(PlayerInfo[playerid][pSex] == 2)
    {
        new RandomFemaleSkin[7][] = { {56}, {69}, {93}, {141}, {150}, {191}, {193} };
        new rand = random(sizeof(RandomFemaleSkin));
        SetPlayerSkin(playerid, rand);
    }
}
Thanks in advance
Reply
#2

I really doubt it's working in game. And why creating 2 dimensions if you only use one? Learning from GF? Bad idea.

Actually you never use RandomMaleSkin or the other (you only use it in sizeof which is evaluated when compiling), so it show these warnings.

pawn Код:
stock RandomSkin(playerid)
{
  if(PlayerInfo[playerid][pSex] == 1)
  {
    new RandomMaleSkin[] = { 60, 66, 101, 128, 170, 180, 188 };
    new rand = RandomMaleSkin[random(sizeof(RandomMaleSkin))];
    SetPlayerSkin(playerid, rand);
  }
  else
  {
    new RandomFemaleSkin[] = { 56, 69, 93, 141, 150, 191, 193 };
    new rand = RandomFemaleSkin[random(sizeof(RandomFemaleSkin))];
    SetPlayerSkin(playerid, rand);
  }
}
Reply
#3

Thanks
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)