Problems With Moving Gates
#1

Код:
#include <a_samp>

#define FILTERSCRIPT
new LSPDGate;

public OnFilterScriptInit()
{
    LSPDGate = CreateObject(980,1588.09997559,-1638.00000000,15.19999981,0.00000000,0.00000000,0.00000000); //object(airportgate) (1)
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/ogate", true)){
        if(IsPlayerInRangeOfPoint(playerid, 285,1561.4171,-1693.9485,5.8906,177.2525)){
            MoveObject(LSPDGate, 1588.09997559,-1638.00000000,15.19999981,3.0);
            return 1;
        }
    }
    else if(strcmp(cmdtext, "/cgate", true)){
        if(IsPlayerInRangeOfPoint(playerid, 285, 1561.4171, -1693.9485 ,5.8906, 177.2525)){
            MoveObject(LSPDGate, 1588.09997559,-1638.00000000,45.19999981,3.0);
            return 1;
        }
    }
    return 0;
}
public OnFilterScriptExit()
{
    return 1;
}
I Have Made An Moving LSPD Gate No Foulds When i go in game and i typ /ogate doesnt work i typ /opgat works and close gate doesnt work to can anywone help me pleas
Reply
#2

your using streamer
Reply
#3

What you mean?
Reply
#4

Check in your gm
its there
Quote:

#include <streamer>

Reply
#5

Quote:

#include <a_samp>
#pragma tabsize 0
forward AnnounceMSG(playerid);

^

Nop
Reply
#6

Код:
#include <a_samp>
#include <streamer>
#define FILTERSCRIPT
new LSPDGate;

public OnFilterScriptInit()
{
    LSPDGate = CreateDynamicObject(980,1588.09997559,-1638.00000000,15.19999981,0.00000000,0.00000000,0.00000000); //object(airportgate) (1)
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/ogate", true)){
        if(IsPlayerInRangeOfPoint(playerid, 285,1561.4171,-1693.9485,5.8906,177.2525)){
            MoveDynamicObject(LSPDGate, 1588.09997559,-1638.00000000,15.19999981,3.0);
            return 1;
        }
    }
    else if(strcmp(cmdtext, "/cgate", true)){
        if(IsPlayerInRangeOfPoint(playerid, 285, 1561.4171, -1693.9485 ,5.8906, 177.2525)){
            MoveDynamicObject(LSPDGate, 1588.09997559,-1638.00000000,45.19999981,3.0);
            return 1;
        }
    }
    return 0;
}
public OnFilterScriptExit()
{
    return 1;
}
Add this
Then download streamer include from here
join this in pwno/includes
http://www.mediafire.com/?oepsj98dk6cbwudhttp://

then download streamer plugins here
Join this file to your plugins
http://www.mediafire.com/?9usd5new3rbirdghttp://
then compile this filter script
Reply
#7

Site's not working mate
Reply
#8

[not working]
Wait i will make gate for you
Reply
#9

k tnx
Reply
#10

try this i tested

Код:
#include <a_samp>
#define FILTERSCRIPT
new LSPDGate;

public OnFilterScriptInit()
{
    LSPDGate = CreateObject(980,1588.09997559,-1638.00000000,15.19999981,0.00000000,0.00000000,0.00000000); //object(airportgate) (1)
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext, "/ogate"))
     {
	 MoveObject(LSPDGate, 1588.09997559,-1638.00000000,15.19999981,3.0);
     return 1;
     }

if(!strcmp(cmdtext, "/cgate"))
     {
     MoveObject(LSPDGate, 1588.09997559,-1638.00000000,45.19999981,3.0);
     return 1;
     }
return 0;
}
public OnFilterScriptExit()
{
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)