11.07.2013, 21:42
Tipo quando um player digita um comando inexistente aparece Unknown Command quero mudar isso quero que apareзa Comando Invalido alguem me ajuda ?
public OnPlayerCommandText(playerid, cmdtext[])
{
//Comandos
//retornando algum valor
return SendClientMessage(playerid, -1, "[INFO] Comando inexistente");
}
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
new String[228];
if(!success)
{
format(String, sizeof(String), "{3cff00}Ч ERRO Ч {FFFFFF}O Comando: {f60505}%s{FFFFFF} Nгo existe! Digite {f60505}/Comandos{FFFFFF} Ou Peзa Ajuda a um Admin.", cmdtext);
SendClientMessage(playerid, Vermelho, String);
}
return 1;
}
Caso vocк use a callback original..
pawn Код:
|
C:\Users\Marcelo\Documents\Servers\samp03x_svr_R1-2_win32\gamemodes\GM.pwn(155) : error 010: invalid function or declaration
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
return SendClientMessage(playerid, 0xFF0000FF, "Comando Invalido");
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
new String[50];
if(!success)
{
format(String, sizeof(String), "[ERRO] O Comando %s nгo existe !", cmdtext);
SendClientMessage(playerid, -1, String);
}
return 1;
}