[HELP ME] 3 Errors.
#1

C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1588 ) : error 001: expected token: "-identifier-", but found "-integer value-"
C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1592) : error 035: argument type mismatch (argument 4)
C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1595) : error 035: argument type mismatch (argument 4)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


3 Errors.

Код:
if(strcmp( "/goto", cmdtext, true) == 0)
{
      new tmp[256];
      tmp = strtok( cmdtext, idx );

      if ( !strlen( tmp ) ) { return 1; }

      new Float:X, Float:Y, Float:Z; // <<< 1588

      if ( GetPlayerVehicleID( playerid ) )
      {
          GetPlayerPos( strval(tmp), X, Y, Z ); // <<< 1592
          SetVehiclePos( GetPlayerVehicleID(playerid), X+2, Y+2, Z );
      } else {
          GetPlayerPos( strval(tmp), X, Y, Z ); // <<< 1595
          SetPlayerPos( playerid, X+2, Y+2, Z );
      }

      return 1;
}
Reply
#2

Can you show the lines 1588, 1592 and 1595 please ?
Reply
#3

Quote:
Originally Posted by sniperwars
Посмотреть сообщение
Can you show the lines 1588, 1592 and 1595 please ?
Please help me.
Reply
#4

Quote:
Originally Posted by jo1101
Посмотреть сообщение
Please help me.
Cant find any errors in the command, better show those lines.
EDIT:try this [Fixed]

pawn Код:
if(strcmp( "/goto", cmdtext, true) == 0)
{
      new tmp[256],idx;
      tmp = strtok( cmdtext, idx );

      if ( !strlen( tmp ) ) { return 1; }

      new Float:X, Float:Y, Float:Z; // <<< 1588

      if ( GetPlayerVehicleID( playerid ) )
      {
          GetPlayerPos( strval(tmp), X, Y, Z ); // <<< 1592
          SetVehiclePos( GetPlayerVehicleID(playerid), X+2, Y+2, Z );
      } else {
          GetPlayerPos( strval(tmp), X, Y, Z ); // <<< 1595
          SetPlayerPos( playerid, X+2, Y+2, Z );
      }

      return 1;
}
Reply
#5

Quote:
Originally Posted by Ironboy
Посмотреть сообщение
Cant find any errors in the command, better show those lines.
EDIT:try this [Fixed]

pawn Код:
if(strcmp( "/goto", cmdtext, true) == 0)
{
      new tmp[256],idx;
      tmp = strtok( cmdtext, idx );

      if ( !strlen( tmp ) ) { return 1; }

      new Float:X, Float:Y, Float:Z; // <<< 1588

      if ( GetPlayerVehicleID( playerid ) )
      {
          GetPlayerPos( strval(tmp), X, Y, Z ); // <<< 1592
          SetVehiclePos( GetPlayerVehicleID(playerid), X+2, Y+2, Z );
      } else {
          GetPlayerPos( strval(tmp), X, Y, Z ); // <<< 1595
          SetPlayerPos( playerid, X+2, Y+2, Z );
      }

      return 1;
}
C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1584) : warning 219: local variable "idx" shadows a variable at a preceding level
C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1589) : error 001: expected token: "-identifier-", but found "-integer value-"
C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1593) : error 035: argument type mismatch (argument 4)
C:\Users\Zerjoe\Desktop\0.3e\gamemodes\zmthai.pwn( 1596) : error 035: argument type mismatch (argument 4)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


3 Errors.


pawn Код:
if(strcmp( "/goto", cmdtext, true) == 0)
{
      new tmp[256],idx;                         [B]<<< 1584 [/B]
      tmp = strtok( cmdtext, idx );

      if ( !strlen( tmp ) ) { return 1; }

      new Float:X, Float:Y, Float:Z;           [B]<<< 1589[/B]

      if ( GetPlayerVehicleID( playerid ) )
      {
          GetPlayerPos( strval(tmp), X, Y, Z );       [B] <<< 1593[/B]
          SetVehiclePos( GetPlayerVehicleID(playerid), X+2, Y+2, Z );
      } else {
          GetPlayerPos( strval(tmp), X, Y, Z );       [B]<<< 1596[/B]
          SetPlayerPos( playerid, X+2, Y+2, Z );
      }

      return 1;
}
Reply
#6

GOD dam it,use ZCMD and sscanf command processor,it's a lot easier to understand,I hate the default OnPlayerCommandText&strtok system.Believe me it is easier,OR,also YCMD&sscanf.
Reply
#7

pawn Код:
COMMAND:goto( playerid, params[ ] )
{
   if( isnull( params ) ) return 0; // No player
   new targetid = strval( params );
   if( !IsPlayerConnected( targetid ) ) return 0; // Targeted player is not connected
   new Float: Pos[ 4 ];
   GetPlayerPos( targetid, Pos[ 0 ], Pos[ 1 ], Pos[ 2 ] );
   GetPlayerFacingAngle( targetid, Pos[ 3 ] );
   SetPlayerPos( playerid, Pos[ 0 ], Pos[ 1 ], Pos[ 2 ] );
   SetPlayerFacingAngle( playerid, Pos[ 3 ] );
   return 1;
}
Reply
#8

if(!strcmp(cmd,"/goto",true) || !strcmp(cmd,"/gotoid",true))
{
if(!(PlayerInfo[playerid][pAdmin] >= 2))
return SendClientMessage(playerid, COLOR_GRAD2, "You are not authorized to use this command.");
// process command
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE,"USAGE: /goto [playerid]");
return 1;
}
new
p=1,
Float:a = GetPlayerFacingAngle(playerid,a),
destination[64] = " ",
lookupid = ReturnUser(tmp);

if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER) p=0;
if(lookupid != INVALID_PLAYER_ID)
{
if(lookupid != playerid)
{
if(!gPlayerLogged[lookupid])
return SendClientMessage(playerid, COLOR_GRAD2,"That player hasn't spawned yet.");
if(GetPlayerState(lookupid) == PLAYER_STATE_SPECTATING)
return SendClientMessage(playerid, COLOR_GRAD2,"That player is spectating someone.");
}
new
Float,
Float:y,
Float:z,
i = GetPlayerInterior(lookupid),
v = GetPlayerVirtualWorld(lookupid);
if(IsPlayerInAnyVehicle(lookupid))
{
GetVehicleZAngle(GetPlayerVehicleID(lookupid),a);
} else {
GetPlayerFacingAngle(lookupid,a);
}
GetPlayerPos(lookupid,x,y,z);
Teleport(playerid,x,y+2,z,a,i,v,p);
destination = PlayerName(lookupid);
}
// format string and send to player
format(string, sizeof(string),"Teleporting to %s",destination);
SendClientMessage(playerid, COLOR_GRAD2,string);
return 1;
}
Reply
#9

Код:
	if(!strcmp(cmd,"/goto",true) || !strcmp(cmd,"/gotoid",true))
	{
	    if(!(PlayerInfo[playerid][pAdmin] >= 1))
	        return SendClientMessage(playerid, COLOR_GRAD2, "You are not authorized to use this command.");
	    // process command
	    tmp = strtok(cmdtext, idx);
	    if(!strlen(tmp))
	    {
	        SendClientMessage(playerid, COLOR_WHITE,"USAGE: /goto [playerid] OR /goto [area]");
	        SendClientMessage(playerid, COLOR_GREY,"AREAS: lsair sfair lvair lspd");
	        SendClientMessage(playerid, COLOR_GREY,"AREAS: skyscraper chiliad area51 airstrip bayside quarry dam bank pier");
			SendClientMessage(playerid, COLOR_GREY,"AREAS: underwater jet battlefield 8track kickstart dirtbike bloodbowl gym");
	        return 1;
		}
		new
		    p=1,
			Float:a = GetPlayerFacingAngle(playerid,a),
			destination[64] = " ",
			lookupid = ReturnUser(tmp);

		if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER) p=0;
		if(lookupid != INVALID_PLAYER_ID)
		{
	    	if(lookupid != playerid)
	    	{
	    		if(!gPlayerLogged[lookupid])
					return SendClientMessage(playerid, COLOR_GRAD2,"That player hasn't spawned yet.");
				if(GetPlayerState(lookupid) == PLAYER_STATE_SPECTATING)
					return SendClientMessage(playerid, COLOR_GRAD2,"That player is spectating someone.");
			}
			new
				Float:x,
				Float:y,
				Float:z,
				i = GetPlayerInterior(lookupid),
				v = GetPlayerVirtualWorld(lookupid);
			if(IsPlayerInAnyVehicle(lookupid))
			{
			    GetVehicleZAngle(GetPlayerVehicleID(lookupid),a);
			} else {
				GetPlayerFacingAngle(lookupid,a);
			}
			GetPlayerPos(lookupid,x,y,z);
			Teleport(playerid,x,y+2,z,a,i,v,p);
			destination = PlayerName(lookupid);
		}
		else if(!strcmp(tmp,"lspd",true) || !strcmp(tmp,"ls",true))
		{
		    destination = "Los Santos Police Department";
		    Teleport(playerid,1529.6,-1691.2,13.3,a,0,0,p);
		}
		else if(!strcmp(tmp,"int1",true))
		{
			GetPlayerName(playerid, sendername, sizeof(sendername));
			if(strcmp(sendername, "Terminator", true) == 0)
			{
			    destination = "Terminator's Room";
			    Teleport(playerid,1492.91, -1635.93, 949.16,270.0,1,0,p);
			    return 1;
			}
		    else
			{
				destination = "Interior 1";
		    	Teleport(playerid,1411.1451,-0.5155,1000.9236,a,1,0,p);
		    }
		}
		else if(!strcmp(tmp,"terminatorsroom",true))
		{
		    destination = "Terminator's Room";
			Teleport(playerid,1492.91, -1635.93, 949.16,270.0,1,0,p);
		}
		else if(!strcmp(tmp,"interior1",true))
		{
		    destination = "Interior 1";
		    Teleport(playerid,1411.1451,-0.5155,1000.9236,a,1,0,p);
		}
		else if(!strcmp(tmp,"gym",true))
		{
		    destination = "Los Santos GYM";
		    Teleport(playerid,2225.4001,-1724.4464,13.5632,a,0,0,p);
		}
		else if(!strcmp(tmp,"lsair",true))
		{
		    destination = "Los Santos Airport";
		    Teleport(playerid,1934.9127,-2290.6362,13.5469,a,0,0,p);
		}
		else if(!strcmp(tmp,"sfair",true) || !strcmp(tmp,"sf",true))
		{
		    destination = "San Fierro Airport";
		    Teleport(playerid,-1417.0,-295.8,14.1,a,0,0,p);
		}
		else if(!strcmp(tmp,"lvair",true) || !strcmp(tmp,"lv",true))
		{
		    destination = "Las Venturas Airport";
		    Teleport(playerid,1699.2,1435.1, 10.7,a,0,0,p);
		}
		else if(!strcmp(tmp,"jet",true))
		{
		    destination = "private jet";
		    Teleport(playerid,1.71875, 30.4062, 1200.34,a,1,0,0);
		}
		else if (!strcmp(tmp,"chiliad",true))
		{
		    destination = "Mt. Chiliad";
		    Teleport(playerid,-2317.5325,-1644.9664,483.7031,a,0,0,p);
		}
		else if (!strcmp(tmp,"area51",true))
		{
		    destination = "Area 51";
		    Teleport(playerid,202.1886,1881.4122,17.2199,37.8779,0,0,p);
		}
		else if (!strcmp(tmp,"airstrip",true))
		{
		    destination = "Desert Airstrip";
		    Teleport(playerid,357.5273,2513.8701,16.5856,a,0,0,p);
		}
		else if (!strcmp(tmp,"skyscraper",true) || !strcmp(tmp,"sky",true))
		{
		    destination = "the Skyscraper";
		    Teleport(playerid,1543.9886,-1353.7587,329.4735,a,0,0,p);
		}
		else if (!strcmp(tmp,"bayside",true))
		{
		    destination = "Bayside Heliport";
		    Teleport(playerid,-2252.2944,2335.5396,4.8125,a,0,0,p);
		}
		else if (!strcmp(tmp,"underwater",true) || !strcmp(tmp,"under",true))
		{
		    destination = "under the sea";
		    Teleport(playerid,-1005.3044,657.4559,-39.0847,a,0,0,p);
		}
		else if (!strcmp(tmp,"bank",true))
		{
		    destination = "The Bank";
		    Teleport(playerid,1462.395751,-1016.391174,25.84375,a,0,0,p);
		}
		else if (!strcmp(tmp,"pier",true))
		{
		    destination = "the fishing pier";
		    Teleport(playerid,364.9920,-2059.7288,15.3990,a,0,0,p);
		}
		else if (!strcmp(tmp,"battlefield",true) || !strcmp(tmp,"battle",true))
		{
		    destination = "the battlefield";
	   	 	Teleport(playerid,-972.4957,1060.9830,1345.6690,a,10,0,p);
		}
		else if (!strcmp(tmp,"dam",true))
		{
	    	destination = "the Sherman Dam";
	    	Teleport(playerid,-715.0000,2062.0000,60.0000,a,0,0,p);
		}
		else if (!strcmp(tmp,"bloodbowl",true))
		{
		    destination = "Bloodbowl Arena";
		    Teleport(playerid,-1394.5928,996.4797,1033.8864,a,15,0,p);
		}
		else if (!strcmp(tmp,"8track",true))
		{
		    destination = "8-Track Stadium";
		    Teleport(playerid,-1406.3815,-262.7644,1043.4290,346.8336,7,0,p);
		}
		else if (!strcmp(tmp,"dirtbike",true))
		{
		    destination = "Dirtbike Stadium";
		    Teleport(playerid,-1436.2065,-642.5217,1049.5261,167.3703,4,0,p);
		}
		else if (!strcmp(tmp,"kickstart",true))
		{
		    destination = "Kickstart Stadium";
		    Teleport(playerid,-1447.2618,1604.3374,1052.5220,263.7223,14,0,p);
		}
		else if (!strcmp(tmp,"quarry",true))
		{
	 		destination = "Hunter Quarry";
	    	Teleport(playerid,609.8776,867.3369,-42.2692,a,0,0,p);
		}
  		else
		{
			return SendClientMessage(playerid, COLOR_FADE1,"Invalid destination.");
		}
		// format string and send to player
  		format(string, sizeof(string),"Teleporting to %s.",destination);
		SendClientMessage(playerid, COLOR_GRAD2,string);
		return 1;
	}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)