01.07.2014, 19:33
Hice un comando con ZCMD, cuando lo pongo el comando en este caso /g [Gritar] me vuelve a decir usa /g [Gritar]
Код:
CMD:g(playerid, params[]) { if(IsPlayerConnected(playerid)) { new Texto[126],String[52 + 126]; if(sscanf(params, "s[126]", Texto)) return ParamsINC(playerid,"/g [ GRITO ]"),1; format(String, sizeof(String), " %s Grita: Ў %s !",NombreJugador(playerid), Texto); ProxDetector(60.0, playerid, String,-1,-1,-1,-1,-1); SetPlayerChatBubble(playerid,Texto,0x7BDA00FF,60,strlen(Texto) * 300); ApplyAnimation(playerid,"GHANDS","gsign2LH",4.1,0,1,1,1,1,true); #if LOG_CHAT == true printf("[ /g ] %s: %s", NombreJugador(playerid),params); #endif } return 1; }