09.02.2011, 00:43
Boas, Ainda nгo testei vou deixar para amanhг.
Tenho outra duvida, talvez seja uma ideia nova.
Deixo aqui o cуdigo, eu sou um pouco newbie nisto, e nгo consigo ajeitar o cуdigo.
O meu objectivo era um player escrever por exemplo: /susurrar 1 Ola
1 = Id do player a que ia aparecer o texto
Ola = O texto que sу ia aparecer no player com o id.
e No jogo aparecia sу o texto para a pessoa com aquele id, e todos viam no chat, Ex: Alguйm susurrou algo.
Mas eu nгo consigo.
Alguйm me pode dar uma ajuda?
Tenho outra duvida, talvez seja uma ideia nova.
Deixo aqui o cуdigo, eu sou um pouco newbie nisto, e nгo consigo ajeitar o cуdigo.
Код:
if(strcmp(cmd, "/susurrar", true) == 0) { if(IsPlayerConnected(playerid)) { if(gPlayerLogged[playerid] == 0) { SendClientMessage(playerid, COLOR_GREY, "Nгo fizeste o login!"); return 1; } if(PlayerInfo[playerid][pMuted] == 1) { SendClientMessage(playerid, TEAM_CYAN_COLOR, "Estбs Silenciado, logo nгo consegues falar."); return 1; } GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer)); new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x,y,z); new length = strlen(cmdtext); while ((idx < length) && (cmdtext[idx] <= ' ')) { idx++; } new offset = idx; new result[128]; 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, "Dica: /susurrar (playerid) (texto) "); return 1; } if(PlayerInfo[playerid][pAdminDuty] == 1) { format(string, sizeof(string), " %s susurrou-te ao ouvido: %s ", sendername, result); SendClientMessage(playerid, COLOR_WHITE, " %s susurrou algo.", sendername); ProxDetector(3.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5); ChatLog(string); } if(PlayerInfo[playerid][pAdminDuty] == 0 && PlayerInfo[playerid][pMaskuse] == 0) { format(string, sizeof(string), " %s susurrou-te ao ouvido: %s ", sendername, result); SendClientMessage(playerid, COLOR_WHITE, " %s susurrou algo.", sendername); ProxDetector(3.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5); ChatLog(string); } } return 1; }
1 = Id do player a que ia aparecer o texto
Ola = O texto que sу ia aparecer no player com o id.
e No jogo aparecia sу o texto para a pessoa com aquele id, e todos viam no chat, Ex: Alguйm susurrou algo.
Mas eu nгo consigo.
Alguйm me pode dar uma ajuda?