[FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1]
#19

lol i have the same prolem agin....
and i downloded your Include file .....

Code:
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(14) : error 020: invalid symbol name ""
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(30) : error 021: symbol already defined: "xMoveVehicle"
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(33) : error 021: symbol already defined: "GetVehiclePos"
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(35) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(37) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(41) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(44) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(48) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(50) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(53) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(57) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(60) : error 021: symbol already defined: "yMoveVehicle"
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(63) : error 021: symbol already defined: "GetVehiclePos"
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(65) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(67) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(71) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(75) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(81) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(84) : error 021: symbol already defined: "zMoveVehicle"
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(87) : error 021: symbol already defined: "GetVehiclePos"
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(88) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(90) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(94) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(98) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(103) : error 010: invalid function or declaration
C:\Dokumente und Einstellungen\Sebbel\Eigene Dateien\Scripting\pawno\include\jmove.inc(106) : error 021: symbol already defined: "MoveVehicle"

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
And my FS looks like:
Code:
#include <a_samp>
#include <jmove>

// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT

#if defined FILTERSCRIPT

forward Autostop();

BotCar = AddStaticVehicle(431, X, Y, Z, Z_Angle, 0, 0);

public OnFilterScriptInit()
{
	print("\n--------------------------------------");
	print(" Carbot by Jason_Gregory umgewandelt in FS von Sebastian Frank");
	print("--------------------------------------\n");
	return 1;
}

public OnFilterScriptExit()
{
	return 1;
}

#else

main()
{
	print("\n----------------------------------");
	print(" Carbot by Jason_Gregory umgewandelt in FS von Sebastian Frank");
	print("----------------------------------\n");
}

#endif

public OnPlayerCommandText(playerid, cmdtext&#91;])
{
    if(strcmp(cmd, "/vehmark", true) == 0)
	{
	  if(IsPlayerConnected(playerid))
	  {
			if (PlayerIsAdmin)
			{
				GetPlayerPos(playerid, TeleportDestveh[playerid][0],TeleportDestveh[playerid][1],TeleportDestveh[playerid][2]);
				SendClientMessage(playerid, COLOR_GRAD1, "  Teleporter Station set, now use /Botstart");
			}
			else
			{
				SendClientMessage(playerid, COLOR_GRAD1, "  HINT: U must login as Rcon Admin !");
			}
		}
		return 1;
	}
	if(strcmp(cmd,"/Startbotcar",true)==0)
	{
	  if(IsPlayerConnected(playerid))
	  {
      	Autostop = SetTimer("Autostop", 250, 1); //Dont worry it can take 250 ;)
      }
	  return 1;
	}
  if(strcmp(cmd,"/Startbotcar",true)==0)
	{
	  if(IsPlayerConnected(playerid))
	  {
    	KillTimer(Autostop);
      }
 	  return 1;
	}
    public Autostop()
    {
		xMoveVehicle(carid);
        yMoveVehicle(carid);
        zMoveVehicle(carid);
        //or just use MoveVehicle(carid); because itґs all in 1
        MoveVehicle
	}
	if(strcmp(cmd,"/Speed1",true)==0)
	{
	  if(IsPlayerConnected(playerid))
	  {
         KillTimer(Autostop);
      	 Autostop = SetTimer("Autostop", 250, 1); //Dont worry it can take 250 ;)
      }
	  return 1;
	}
  if(strcmp(cmd,"/Speed2",true)==0)
	{
	  if(IsPlayerConnected(playerid))
	  {
    	Autostop = SetTimer("Autostop", 150, 1);
      }
 	  return 1;
	}
    if(strcmp(cmd,"/Speed3",true)==0)
	{
	  if(IsPlayerConnected(playerid))
	  {
         KillTimer(Autostop);
    	 Autostop = SetTimer("Autostop", 50, 1); //If u want it faster just edit it
      }
 	  return 1;
	}

}

Reply


Messages In This Thread
[FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Jason_Gregory - 23.04.2009, 02:23
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by NEW_IE - 23.04.2009, 02:55
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by RenisiL - 23.04.2009, 03:35
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0 - by Dairyll - 23.04.2009, 09:51
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by beggas - 23.04.2009, 11:36
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Kriztian - 23.04.2009, 14:07
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by miokie - 23.04.2009, 15:00
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by SpiderPork - 23.04.2009, 15:07
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0 - by mysq - 23.04.2009, 15:18
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by kasco - 23.04.2009, 15:30
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by [IB]Scorcher - 23.04.2009, 16:39
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by SureShot - 23.04.2009, 17:33
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by sebihunter - 23.04.2009, 17:40
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0 - by Dairyll - 23.04.2009, 17:51
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Redirect Left - 23.04.2009, 17:52
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by ChristanBlack - 23.04.2009, 20:55
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Jason_Gregory - 23.04.2009, 21:14
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Jason_Gregory - 23.04.2009, 21:18
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by ChristanBlack - 23.04.2009, 21:40
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by DMSOrg - 23.04.2009, 22:19
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Jason_Gregory - 23.04.2009, 23:25
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by ryan kirky - 24.04.2009, 00:13
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by [IB]Scorcher - 24.04.2009, 07:00
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by s0brus - 24.04.2009, 13:50
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by ChristanBlack - 24.04.2009, 16:35
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by hk_shade - 25.04.2009, 07:24
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by El_Piloto - 09.05.2009, 22:58
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by GiP_YossI - 17.08.2009, 20:15
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Showman - 02.09.2009, 12:01
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Janek17 - 13.10.2010, 15:17
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by Haji - 13.10.2010, 19:21
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by jameskmonger - 13.10.2010, 19:26
Re: [FS/INC] Carbot - Tired of driving Busses or Cars ? Get your Carbot now [v.0.1] - by nicoud - 13.10.2010, 20:45

Forum Jump:


Users browsing this thread: 1 Guest(s)