[HELP]Help me plz
#1

I create command:
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	new cmd[256];
	new idx;
	cmd = strtok(cmdtext, idx);
	if (strcmp(cmd, "/test", true) == 0)
	{
		new tmp[256];
		tmp = strtok(cmdtext, idx);
		new tested = strval(tmp);
		if(!strlen(tmp))
		{
		  SendClientMessage(playerid, COLOR_RED, "Используйте /test <ID>");
		  return 1;
		}
		else
		{
			new Float:playerh;
			new health;
			health = GetPlayerHealth(tested, playerh);
			new saved;
      if(health == 1)
      {
      SendClientMessage(playerid, COLOR_RED, "Мало хп");
      }
			else
			{
			  GetPlayerHealth(tested, health);
			  health = saved;
			  SetPlayerHealth(tested, health-1);
        if(health == saved)
        {
          SendClientMessage(playerid, COLOR_RED, "Плохой результат");
			    SetPlayerHealth(tested, health+1);
        }
			}
			else
			{
			  SendClientMessage(playerid, COLOR_GREEN, "Хороший результат");
			  SetPlayerHealth(tested, health+1);
			}
		}
	}
	return 0;
}
When i compile this, pawno show me:
Код:
C:\DOCUME~1\CRAZYS~1\0016~1\server\FILTER~1\th.pwn(58) : warning 213: tag mismatch
C:\DOCUME~1\CRAZYS~1\0016~1\server\FILTER~1\th.pwn(67) : error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Lines:
Код:
55      }
56			else
57			{
58			  GetPlayerHealth(tested, health);
and
Код:
64			    SetPlayerHealth(tested, health+1);
65        }
66			}
67			else
68			{
Reply


Messages In This Thread
[HELP]Help me plz - by crazyserega1994 - 22.07.2008, 09:54
Re: [HELP]Help me plz - by Nero_3D - 22.07.2008, 10:05
Re: [HELP]Help me plz - by chaosnz - 25.09.2009, 06:26
Re: [HELP]Help me plz - by Calgon - 25.09.2009, 06:29

Forum Jump:


Users browsing this thread: 1 Guest(s)