/a command aka /admin
#1

I have a code i need edited. Thanks
Код:
	if(strcmp(cmd, "/admin", true) == 0 || strcmp(cmd, "/a", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        new str[160];
		    GetPlayerName(playerid, str, MAX_PLAYER_NAME);
            for (new i = 0; i < MAX_PLAYER_NAME; i++)
            if (str[i] == '_')
            str[i] = ' ';
			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_LIGHTBLUE, "USAGE: (/a)dmin [admin chat]");
				return 1;
			}
			format(str, sizeof(str), "*%d Admin %s: %s", PlayerInfo[playerid][pAdmin], str, result);
			if (PlayerInfo[playerid][pAdmin] >= 1)
			{
				SendAdminMessage(COLOR_YELLOW, str);
			}
			printf("Admin %s: %s", str, result);
//			AdmincLog(string[]);
		}
		return 1;
	}
I need it so when /a instead of "Level 1340 Admin Luco_Corleone:"
And "Level 1340 Admin Anderson_Matthew:"

it says: "Owner Luco_Corleone:"
& "Owner Anderson_Matthew:"
Reply


Messages In This Thread
[Solved] /a command aka /admin - by Master™ - 09.07.2010, 00:32
Re: /a command aka /admin - by Lilcuete - 09.07.2010, 00:44
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:22
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:24
Re: /a command aka /admin - by CAR - 09.07.2010, 09:50
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:53
Re: /a command aka /admin - by CAR - 09.07.2010, 09:55
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:56
Re: /a command aka /admin - by CAR - 09.07.2010, 09:57
Re: /a command aka /admin - by Master™ - 09.07.2010, 09:57

Forum Jump:


Users browsing this thread: 7 Guest(s)