SA-MP Forums Archive
[Pedido] Tutorial de criar gangue - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] Tutorial de criar gangue (/showthread.php?tid=525837)



Tutorial de criar gangue - Lorruan - 14.07.2014

Um tutorial de gangues que ao conectar em OnPlayerRequestClass apareзa a skin da gangue
groove , ballas , vagos e ao mudar mude a imagem e tela da skin Tem esse tutorial aqui no forum ?



Re: Tutorial de criar gangue - Prefacio - 14.07.2014

https://sampforum.blast.hk/showthread.php?tid=457099


Re: Tutorial de criar gangue - Lorruan - 14.07.2014

Quote:
Originally Posted by Prefacio
Посмотреть сообщение
Cara nгo consegui o queria com sua resposta


Re: Tutorial de criar gangue - Schocc - 14.07.2014

Vocк precisa criar um sistema de Classes, depois usar a funзгo GameTextForPlayer.

Isso й bem simples, vou deixar um exemplo.

pawn Код:
new GangSkin[][] = {
    "no gang"
    "Groove",
    "Ballas"
};

public OnPlayerRequestClass(playerid, classid) {

    GameTextForPlayer(playerid, GangSkin[classid], 5000, 2);
    switch (classid) {
        case 0:{
            //......
        }
        case 1:{
            //.....
        }
    }
    return 1;
}