Need me help for 1 FS .. -
dundolina - 12.10.2011
I would like to help me find this filterscript, I've shown in the video. Or if not filterscript and code, please give it back. Thanks in advance, but here's the video:
http://vbox7.com/play:1cb10e5e40
Re: Need me help for 1 FS .. -
Dredd - 12.10.2011
link didn't respond, so I can't help you.
Re: Need me help for 1 FS .. -
dundolina - 13.10.2011
Link fixed ..
http://vbox7.com/play:1cb10e5e40
I posted new link
[ame]http://www.youtube.com/watch?v=o2HbQtkoQCE[/ame]
Re: Need me help for 1 FS .. -
Tom1412 - 13.10.2011
Hi this is very basic,
I thoughti would make it for you.
Teleport System download
I hope this is what you wanted.
Enjoy
Re: Need me help for 1 FS .. -
dundolina - 13.10.2011
Please paste another link and more info ?!
Re: Need me help for 1 FS .. -
Tom1412 - 13.10.2011
Well i created a Teleport system, with pickup's. I also picked the same pickup as in the video.
What you need to do is get the cords for the enter and exit, You can do this by doing /save (call it anything aslong as you know it enterance from exit)
Then goto C:\Users\(your pc name)\Documents\GTA San Andreas User Files\SAMP
place the cords in the right places.
I have also made it simple to use with the #defines that are at the top.
If you want I will create more, or if you get the cords i will add them for you.
Copy of the script in pastebin click
here
pawn Код:
//Entrance System Made by tom.1412
//If you want more made or need help message me
#include <a_samp>
#define FILTERSCRIPT
#define Timer 2000 //The amount of time the text stays on screen 1000 = 1 secpmd
#define Text 0xFFFFFFAA //The color of the Text, You can find these colors on samp.
#define EntranceMessage " PLACE "//change the text between the " " to what you want it to say when you enter
#define ExitMessage " Los Santos "//change the text between the " " to what you want it to say when you enter
#if defined FILTERSCRIPT
#endif
new Entrance;
new Exit;
public OnFilterScriptInit()
{
Entrance = CreatePickup(1318, 23, 1750.2863,518.2169,27.9678, 0);//set the cords to where you want the entrance
Exit = CreatePickup(1318, 23, 1744.1271,521.0207,27.9283, 0);//set the cords to where you want the exit
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == Entrance) SetTimer("Entrance1", 10, false);
if(pickupid == Exit) SetTimer("Exit1", 10, false);
return 1;
}
forward Entrance1(playerid);
public Entrance1(playerid)
{
GameTextForPlayer(playerid, EntranceMessage, Timer, 1);
SetPlayerPos(playerid,0.0,0.0,3.0);// when you enter the entrance pickup this will place you at this location, Not the same as the exit pickup
return 1;
}
forward Exit1(playerid);
public Exit1(playerid)
{
GameTextForPlayer(playerid, ExitMessage, Timer, 1);
SetPlayerPos(playerid,0.0,0.0,3.0);// when you enter the exit pickup this will place you at this location, Not the same as the enterance pickup
return 1;
}