I can't seem to get it right... -
AlterEGO - 01.04.2015
Hi, I know Ive asked it before and all..,
But I can't seem to make it work. I don't know why, but it ain't working for me.
So i was wondering if anyone could help me and make me a /ame command code.
Simple, the command does a /me CMD which pops above the player for few seconds then disappear without any other players seeing it on thier string. Here is my /me code:
Code:
if(strcmp(cmd, "/me", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_LIGHTRED, " You havent logged in yet !");
return 1;
}
if(PlayerInfo[playerid][pMuted] == 1)
{
SendClientMessage(playerid, TEAM_CYAN_COLOR, "You cannot speak, you have been silenced");
return 1;
}
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_LIGHTRED, "USAGE: /me [action]");
return 1;
}
if(PlayerInfo[playerid][pAdminDuty] == 1)
{
format(string, sizeof(string), "* Admin %s", result);
}
if(PlayerInfo[playerid][pMaskuse] == 1 && PlayerInfo[playerid][pAdminDuty] == 0)
{
format(string, sizeof(string), "* %s %s", PlayerInfo[playerid][pMaskName], result);
}
if(PlayerInfo[playerid][pAdminDuty] == 0 && PlayerInfo[playerid][pMaskuse] == 0)
{
format(string, sizeof(string), "* %s %s", sendername, result);
}
SetPlayerChatBubble(playerid, string, COLOR_CHAT1, 20.0, 2000);
ProxDetector(30.0, playerid, string, COLOR_CHAT1,COLOR_CHAT2,COLOR_CHAT3,COLOR_CHAT4,COLOR_CHAT5);
new y, m, d;
new h,mi,s;
getdate(y,m,d);
gettime(h,mi,s);
format(string,sizeof(string), "(%d/%d/%d)[%d:%d:%d] [/ME] %s: %s",d,m,y,h,mi,s,sendername,giveplayer, result);
ActionLog(string);
}
return 1;
Re: I can't seem to get it right... -
Ritzy2K - 01.04.2015
Why not to use sscanf to make it simpler?
im on phone but if u want i can write this command with sscanf.
Edit: use zcmd too!
Re: I can't seem to get it right... -
CalvinC - 01.04.2015
Show the /ame code you're having problems with, not the /me code.
And i would recommend using ZCMD and SSCANF, which would make it hundred times easier and more efficient/faster.
Re: I can't seem to get it right... -
Ritzy2K - 01.04.2015
pawn Code:
CMD:me(playerid, params[])
{
new action[50], fstr[50];
if(gPlayerLogged[playerid] == 0) return SendClientMessage(playerid, RED, "You Arent Logged In. Log In Before using the Command");
if(sscanf(params, "s[50]", action)) return SendClientMessage(playerid, RED, "[USAGE]: /me [action]");
if([playerid][pMuted] == 1) return SendClientMessage(playerid, RED, "You cant use this command while your muted.");
if(strlen(action) < 1 || strlen(action) > 64) return SendClientMessage(playerid, RED, "Your action can only contain 1-64 characters.");
format(fstr, sizeof(fstr), "%s %s...", GetName(playerid), action);
SendClientMessageToAll(WHITE, fstr);
return true;
}
sorry couldnt make it completely accurate to your command since im a newbie kinda..but it should help you.. and its simpler and easier
i