Olá, estarei ensinando a como criar um comando simples, para alguém que não sabe nem isso, então vamos la...
Para iniciantes, vou mostrar um comando de mostrar a STAFF, do servidor.
Vá na sua GM(GameMode), e procure:
Obrigado, espero ter ajudade, deu algum erro ? Me informe!
Para iniciantes, vou mostrar um comando de mostrar a STAFF, do servidor.
Vá na sua GM(GameMode), e procure:
- Código:
public OnPlayerCommandText(playerid, cmdtext[])
- Código:
{
if (strcmp("/equipe", cmdtext, true, 10) == 0)
{
- Código:
// Funções...
}
return 0;
}
- Código:
SendClientMessage(playerid, COLOR_YELLOW, "[Script Samp] Equipe");
SendClientMessage(playerid, COLOR_YELLOW, "Fundador: --");
SendClientMessage(playerid, COLOR_YELLOW, "Scripters: --");
SendClientMessage(playerid, COLOR_YELLOW, "Mappers: --");
SendClientMessage(playerid, COLOR_YELLOW, "www.scriptsamp.com.br");
}
return 0;
}
- Código:
#define COLOR_YELLOW 0xFFFF00AA
- Código:
//Define
#define COLOR_YELLOW 0xFFFF00AA
// Na public
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/equipe", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid, COLOR_YELLOW, "[Script Samp] Equipe");
SendClientMessage(playerid, COLOR_YELLOW, "Fundador: --");
SendClientMessage(playerid, COLOR_YELLOW, "Scripters: --");
SendClientMessage(playerid, COLOR_YELLOW, "Mappers: --");
SendClientMessage(playerid, COLOR_YELLOW, "www.scriptsamp.com.br");
}
return 0;
}
Obrigado, espero ter ajudade, deu algum erro ? Me informe!