[HELP] May You Can?
#1

Well, I've created an pickup for Cops where they can choose their skin. But well, I got a error. I want to do that, if they choose the "Next", they should come a next skin, and again if they do next again a next skin, and so on. I wanted to add 4 skins there. And if they do "accept", they should have the skin then as cop they've selected. So, by each time doing Next, they view any skin there, and by doing accept they choose it. Possible?
But by my function its: If I press button next, the menu is going to close. By doing Accept comes nothing, because I dont know how to do that, that they accept the skin.

Please help guys!!




PHP код:
    lspdskinmenu=CreateMenu("Skins"14.000000222.000000100.0100.0);
    
AddMenuItem(lspdskinmenu0"Next Skin");
    
AddMenuItem(lspdskinmenu0"Accept"); 
PHP код:
public OnPlayerSelectedMenuRow(playeridrow)
{
    new 
Menu:CurrentMenulspd GetPlayerMenu(playerid);
    if(
CurrentMenulspd == lspdskinmenu)
    {
         switch(
row)
        {
            case 
0//Case 0 fьr erste Item im Menu
            
{
                if(
GetPlayerTeam(playerid) == 1)
                {
                    
SetPlayerSkin(playerid266);
                }
                else
                {
                    
SendClientMessage(playerid,0xA50000FF"You're not a Cop");
                }
            }
            case 
1:
            {
            
            }
        }
    } 
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)