Buenas Gente de espanol-pawno hoy les vengo a traer unos pequeños comandos de ayuda a los GM desde 0%.
- strcmp:
- if(strcmp(cmd, "/me", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(JugadorLogeado[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "¡No estas logeado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Uso: /me [acción]");
return 1;
}
if(InfoJugador[playerid][jMascara] == 1)
{
format(string, sizeof(string), "* Desconocido %s", result);
}
else
{
format(string, sizeof(string), "* %s %s", sendername, result);
}
ProxDetector(30.0, playerid, string, COLOR_PURPURA,COLOR_PURPURA,COLOR_PURPURA,COLOR_PURPURA,COLOR_PURPURA);
}
return 1;
}
if(strcmp(cmd, "/so", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(JugadorLogeado[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "¡No estas logeado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Uso: /so [Sonido]");
return 1;
}
if(InfoJugador[playerid][jMascara] == 1)
{
format(string, sizeof(string), "* Desconocido %s", result);
}
else
{
format(string, sizeof(string), "* %s [Se Oye] %s", sendername, result);
}
ProxDetector(30.0, playerid, string, COLOR_SONIDO,COLOR_SONIDO,COLOR_SONIDO,COLOR_SONIDO,COLOR_SONIDO);
}
return 1;
}
if(strcmp(cmd, "/do", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(JugadorLogeado[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "¡No estas logeado!");
Kick(playerid);
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Use: /do [acción]");
return 1;
}
if(InfoJugador[playerid][jMascara] == 1)
{
format(string, sizeof(string), "* %s (( Desconocido ))", result);
}
else
{
format(string, sizeof(string), "* %s (( %s ))", result, sendername);
}
ProxDetector(30.0, playerid, string, COLOR_GREEN,COLOR_GREEN,COLOR_GREEN,COLOR_GREEN,COLOR_GREEN);
printf("%s", string);
}
return 1;
}
if(strcmp(cmd, "/intentar", true) == 0)
{
if(NoIntentar[playerid] == MAXIMOS_INTENTAR) return SendClientMessage(playerid,0x7EBEFFFF,"Solo puedes usar el /intentar, una vez cada 10 segundos.");
{
if(IsPlayerConnected(playerid))
{
if(JugadorLogeado[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "¡No estas logeado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Utiliza: /intentar [acción]");
return 1;
}
new rand = random(2);
if(rand == 0)
{
if(InfoJugador[playerid][jMascara] == 0)
{
format(string, sizeof(string), "* %s Intento %s y consiguio hacerlo", sendername, result);
ProxDetector(30.0,playerid, string, COLOR_GREEN,COLOR_GREEN,COLOR_GREEN,COLOR_GREEN,COLOR_GREEN);
}
else
{
format(string, sizeof(string), "* Desconocido Intento %s y consiguio hacerlo", result);
ProxDetector(30.0,playerid, string, COLOR_GREEN,COLOR_GREEN,COLOR_GREEN,COLOR_GREEN,COLOR_GREEN);
}
}
else if(rand == 1)
{
if(InfoJugador[playerid][jMascara] == 0)
{
format(string, sizeof(string), "* %s intento %s y no consiguio hacerlo", sendername, result);
ProxDetector(30.0,playerid, string, COLOR_ROJO,COLOR_ROJO,COLOR_ROJO,COLOR_ROJO,COLOR_ROJO);
}
else
{
format(string, sizeof(string), "* Desconocido Intento %s y no consiguio hacerlo", result);
ProxDetector(30.0,playerid, string, COLOR_ROJO,COLOR_ROJO,COLOR_ROJO,COLOR_ROJO,COLOR_ROJO);
}
}
}
}
if(NoIntentar[playerid] < MAXIMOS_INTENTAR) NoIntentar[playerid]++;
if(NoIntentar[playerid] == MAXIMOS_INTENTAR)
{
SetTimerEx("VolverUsarIntentar",6000,0,"d",playerid);
}
return 1;
}
if(strcmp(cmd, "/b", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(JugadorLogeado[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "¡No estas logeado!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "Uso: /b [chat ooc]");
return 1;
}
if(InfoJugador[playerid][jMascara] == 1)
{
format(string, sizeof(string), "((Desconocido [OOC]: %s))", result);
}
else
{
format(string, sizeof(string), "(([%i] %s [OOC]: %s))", playerid, sendername, result);
}
ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
printf("%s", string);
}
return 1;
}
return SendClientMessage(playerid, -1, "Comando Incorrecto");
}