#1

Code:
C:\Users\ASUS\Desktop\Server.pwn(1042) : error 017: undefined symbol "ReturnUser"
Code:
if (strcmp("/goto", cmdtext, true, 10) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_WHITE, "Използвай: /goto [Playerid/PartOfName]");
				return 1;
			}
            GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
			new Float:plocx,Float:plocy,Float:plocz;
			new plo;
			plo = ReturnUser(tmp);
			if (IsPlayerConnected(plo))
			{
			    if(plo != INVALID_PLAYER_ID)
			    {
                        {
						GetPlayerPos(plo, plocx, plocy, plocz);
						SetPlayerInterior(playerid, GetPlayerInterior(plo));
						SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(plo));
						if (GetPlayerState(playerid) == 2)
						{
							new tmpcar = GetPlayerVehicleID(playerid);
							SetVehiclePos(tmpcar, plocx, plocy+4, plocz);
							TelePos[playerid][0] = 0.0;
							TelePos[playerid][1] = 0.0;
						}
						else
						{
							SetPlayerPos(playerid,plocx,plocy+2, plocz);
						}
				        SendClientMessage(plo, COLOR_WHITE, string);
				        SendClientMessage(playerid, COLOR_WHITE, string);
					}
				}
			}
			else
			{
				format(string, sizeof(string), "ID-то, което посочи не е в сървъра.");
				SendClientMessage(playerid, COLOR_GRAD1, string);
			}
		}
		return 1;
	}
Reply
#2

you are lacking the definition of "ReturnUser" function.
i don't know what that function had to do.
try with plo=tmp;
or delete "new plo;"
and replace plo with "tmp"

also, you have to use ZCMD with sscanf, that kind of command is very simple to do.
Reply
#3

Is there the ReturnUser function at the end of the GameMode?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)