01.10.2012, 17:37
So i have this 
And i ghet this what do i miss ??
I forgot something ?
Please help

Код:
//---------------------------------[LCS]----------------------------------------- if(strcmp(cmd, "/gotolcs", true) == 0) // { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pAdmin] >= 1) { if (GetPlayerState(playerid) == 2) { new tmpcar = GetPlayerVehicleID(playerid); SetVehiclePos(tmpcar, -1038.3295, -1030.3242, 129.2119); TelePos[playerid][0] = 0.0;TelePos[playerid][1] = 0.0; LinkVehicleToInterior(tmpcar, 0); SetPlayerVirtualWorld(playerid, 1); } else { SetPlayerPos(playerid, -1035.0485, -1030.0416, 129.3460); SetPlayerVirtualWorld(playerid, 1); } SendClientMessage(playerid, COLOR_GRAD1, "You have Been Teleported"); SendClientMessage(playerid, COLOR_NICERED, "Welcome to the Lcs Area."); SetPlayerInterior(playerid,0); DisablePlayerCheckpoint(playerid); } else { SendClientMessage(playerid, COLOR_GRAD1, " You are not authorized to use that command!"); return 1; } } return 1; } if(strcmp(cmd, "/openlcs", true) == 0) // By CuervO_NegrO { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pAdmin] < 4 && PlayerInfo[playerid][pDM] < 1) { SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use that command."); return 1; } SendClientMessageToAll(TEAM_GROVE_COLOR, "PlayZone Server LCS is now OPEN!"); SendClientMessageToAll(TEAM_GROVE_COLOR, "We have only 30 slots so hurry up"); } return 1; } if(strcmp(cmd,"/lcscount",true) == 0 || strcmp(cmd,"/lcscd",true) == 0) // By CuervO_NegrO { if(PlayerInfo[playerid][pDM] == 1) { for(new i = 0; i < MAX_PLAYERS; i++) if(PlayerInfo[i][pDTK] == 1 || IsPlayerInRangeOfPoint(i,250, -1035.0485, -1030.0416, 129.3460)) { SetTimer("DD1", 1000, false); SetTimer("DD2", 2000, false); SetTimer("DD3", 3000, false); SetTimer("DD4", 4000, false); SetTimer("DD5", 5000, false); SetTimer("DD6", 6000, false); } } return 1; } if(strcmp(cmd, "/lcsrights", true) == 0) // By CuervO_NegrO { if(IsPlayerConnected(playerid)) { tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "{D580FE}Foloseste:{FFFFFF} /ddrights [playerid/PartOfName] [level](0-1)"); return 1; } new playa; new level; playa = ReturnUser(tmp); tmp = strtok(cmdtext, idx); level = strval(tmp); if(PlayerInfo[playerid][pAdmin] >= 1338) { if(IsPlayerConnected(playa)) { if(playa != INVALID_PLAYER_ID) { //ConsumingMoney[playa] = 1; if(level < 0||level > 1) { SendClientMessage(playerid, COLOR_GREY, "** Level May not be below 0 or above 1!"); return 1; } GetPlayerName(playa, giveplayer, sizeof(giveplayer)); PlayerInfo[playa][pDM] = level; format(string, sizeof(string), "** Gave to %s LCS Manager Level [%d]",giveplayer,level); SendClientMessage(playerid, COLOR_ORANGE, string); format(string, sizeof(string), "~b~-LCS- ~n~~w~You Have Now Level ~y~%d ~n~~w~At the ~p~Official LCS Managers Team",level); GameTextForPlayer(playa, string, 4500,3); } } } else { SendClientMessage(playerid, COLOR_GRAD1, "** Nu ai dreptul de a utiliza aceasta comanda!"); } } return 1; } if(strcmp(cmd, "/lcsHelp", true) == 0) // By CuervO_NegrO { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pAdmin] < 4 && PlayerInfo[playerid][pDM] == 0) { SendClientMessage(playerid, COLOR_LIGHTRED, "You do not have Authorization to use this Command!"); return 1; } SendClientMessage(playerid, COLOR_YELLOW, "----------------------- LCS Help -----------------------"); SendClientMessage(playerid, COLOR_WHITE, "To go to LCS Type: /gotolcs"); SendClientMessage(playerid, COLOR_WHITE, "To Send a LCS Opening Message Type: /LCS"); } return 1; } if(strcmp(cmd, "/joinlcs", true) == 0) { if(IsPlayerConnected(playerid)) { if (lcs == 1) { if (GetPlayerState(playerid) == 2) { SendClientMessage(playerid, COLOR_GRAD1, " Get out of your vehicle, and try again!"); return 1; } if(PlayerInfo[playerid][pJailed] == 1) { SendClientMessage(playerid,COLOR_GREY," You can`t use this command, you are in jail !"); return 1; } if(WantedLevel[playerid] >= 1) { SendClientMessage(playerid,COLOR_GREY," You can`t use this command, you are currently Wanted !"); return 1; } if(PlayerTied[playerid] > 0) { SendClientMessage(playerid, COLOR_GREY, " you can`t use this command because you are tied!"); return 1; } /*else { SetPlayerPos(playerid, -1035.0485, -1030.0416, 129.3460); }*/ new Random = random(30); SetPlayerPos(playerid, RandomSpawns[Random][0], RandomSpawns[Random][1], RandomSpawns[Random][2]); SetPlayerFacingAngle(playerid, RandomSpawns[Random][3]); SendClientMessage(playerid, COLOR_GRAD1, " Ai fost teleportat la LCS!"); TogglePlayerControllable(playerid, 0); SetPlayerInterior(playerid,0); PlayerInfo[playerid][pInt] = 1; SetPlayerVirtualWorld(playerid,1); ResetPlayerWeapons(playerid); GivePlayerWeapon(playerid, 0, 0); SetPlayerHealth(playerid, 100); SetPlayerArmour(playerid, 0); } else { SendClientMessage(playerid, COLOR_GRAD1, " The LCS Event is not activated at this time!"); } }
Код:
C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3405) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3409) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3421) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3425) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3429) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3433) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3437) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3441) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3445) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3457) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3461) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3465) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3469) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3473) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3485) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3489) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3493) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3505) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3509) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3513) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(3517) : error 004: function "PlayerToPoint" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(4295) : error 004: function "RemoveRoadblock" is not implemented C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(4301) : error 017: undefined symbol "PlayerName" C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(5123) : error 017: undefined symbol "PlayerName" C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(5309) : error 017: undefined symbol "IsLeader" C:\Users\bos\Desktop\pronion\gamemodes\godfatherNEWwsws.pwn(5311) : error 017: undefined symbol "IsLeader" Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 26 Errors.
Please help