SA-MP Forums Archive
[Ajuda] Alguns Comandos.... - 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: [Ajuda] Alguns Comandos.... (/showthread.php?tid=262180)



[Ajuda] Alguns Comandos.... - Tymer - 16.06.2011

Nгo Consigo Criar Comandos Tipo:
/convidar
/expulsar
/membros
/darcargo
---------------
Nгo Consigo Por Cargos Tipo:
Lider: Fulano_Cicrano
Sub-Lider- hhh_hhh
.......................
--------------------
E Tmb Podiam Pe Ensinar Como Criar Um Org. Melhor?
Nгo Tou Percebendo Muito.



Re: [Ajuda] Alguns Comandos.... - DreeH - 16.06.2011

Use o SEARCH!

http://forum.sa-mp.com/showthread.ph...ight=Criar+ORG

УTIMO Tutorial do Jonathan_Feitosa de como criar uma gang, com comando, spawn, skin e cor.

Leia que concerteza vocк conseguirб.


Re: [Ajuda] Alguns Comandos.... - Tymer - 17.06.2011

AFF, Mas Como Ponho? If[gplayer........
Tipo /Convidar ID.
No Pawno O Codigo fica assim?

If[strip coamand "/Convidar".........
{
PlayerJoinGang.
}

PARECIDO COM ISSO AI EM CIMA.


Re: [Ajuda] Alguns Comandos.... - Ricop522 - 17.06.2011

pawn Код:
if(strcmp(cmd,"/convidar") == true) return tmp = strtok(cmdtext, idx), if(!strlen(tmp)) return SendClientMessage(playerid, -1, "convidar id"), new id = ReturnUser(tmp);
Pronto, /convidar ID feito
Agora adicione pra que ele vire da org.


Re: [Ajuda] Alguns Comandos.... - Tymer - 19.06.2011

Ponho Sу
Quote:

if(strcmp(cmd,"/convidar") == true) return tmp = strtok(cmdtext, idx), if(!strlen(tmp)) return SendClientMessage(playerid, -1, "convidar id"), new id = ReturnUser(tmp);

Falta O Return etc... Podes Por? por favor!


Re: [Ajuda] Alguns Comandos.... - DreeH - 19.06.2011

PHP код:
return SendClientMessage(playerid, -1"convidar id"), new id ReturnUser(tmp); 
Certeza que falta o return? lols, ele sу resumiu um comando em 1 linha.


Re: [Ajuda] Alguns Comandos.... - mengueh - 19.06.2011

pawn Код:
if(strcmp(cmd,"/convidar") == true) return tmp = strtok(cmdtext, idx), if(!strlen(tmp)) return SendClientMessage(playerid, -1, "convidar id"), new id = ReturnUser(tmp);
pawn Код:
//TOPO DO GM
enum gInfo
{
gMembro,
gLider,
};
PlayerGang[MAX_PLAYERS][gInfo]

// Para definir uma pessoa de tal gang :

PlayerGang[playerid][gLider] = 1; // Se for lider
PlayerGang[playerid][gMembro] = 1 // Se for membro

// Para definir um tal comando para lнder ou para membro.

if(strcmp("/ajudalider", cmdtext, true) == 0)
{
  if(PlayerGang[playerid][gLider] =< 1)
  {
   SendClientMessage(playerid, COR, "Comandos, comandos de lider, comandos de lider");
    }
  else
    {
    SendClientMessage(playerid, COR, "Vocк nгo й lider");
  }
return 1;
}



Re: [Ajuda] Alguns Comandos.... - Ricop522 - 19.06.2011

pawn Код:
if(strcmp(cmd,"/convidar") == true) {
     tmp = strtok(cmdtext, idx);
     if(!strlen(tmp)) return SendClientMessage(playerid, -1, "convidar id");
     new id = ReturnUser(tmp);
     //Termine o comando
     return 0x01;
}



Re: [Ajuda] Alguns Comandos.... - Tymer - 20.06.2011

Agora, Nгo Consigo Por Lider, Sub Lider, Membros, /DarCargo........

Podem Me Ajudar?


Re: [Ajuda] Alguns Comandos.... - Ricop522 - 21.06.2011

PHP код:


if(strcmp(cmd,"/convidar") == true) {
     
tmp strtok(cmdtextidx);
     if(!
strlen(tmp)) return SendClientMessage(playerid, -1"convidar id");
     new 
id ReturnUser(tmp);
     
//Termine o comando
     
return 0x01;
}
if(
strcmp(cmd,"/darlider") == true) {
     
tmp strtok(cmdtextidx); if(!strlen(tmp)) return SendClientMessage(playerid, -1"/darlider ID ORG");
     new 
id ReturnUser(tmp);
     
tmp strtok(cmdtextidx); if(!strlen(tmp)) return SendClientMessage(playerid, -1"/darlider ID ORG");
     new 
org strval(tmp);
     
//Termine o comando
     
return 0x01;
}
if(
strcmp(cmd,"/membros") == true) {
     for(new 
0x0MAX_PLAYERS; ++i) {
        if(
Org[i] == 1)
     }
     
//Termine o comando
     
return 0x01;
}
if(
strcmp(cmd,"/darcargo") == true) {
     
tmp strtok(cmdtextidx);
     if(!
strlen(tmp)) return SendClientMessage(playerid, -1"/Darcargo id cargo");
     new 
id ReturnUser(tmp);
     
tmp strtok(cmdtextidx); if(!strlen(tmp)) return SendClientMessage(playerid, -1"/darcargo ID cargo");
     new 
cargo strval(tmp);
     
//Termine o comando
     
return 0x01;

Tenho curso agora, teste..

FLW