SA-MP Forums Archive
[FilterScript] >>| Teleports Around Los Santos |<< - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] >>| Teleports Around Los Santos |<< (/showthread.php?tid=368692)



>>| Teleports Around Los Santos |<< - California_ - 14.08.2012

This is a filterscript i made for one of my scripter applications but since That server closed Im Realesing it here





This filterscripts are teleports around San andreas

It's simple i know but aye It was for a scripter app






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

#include <a_samp>
#include <zcmd>
#define blue 0x156AEAC8
#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Blank Filterscript by your name here");
    print("--------------------------------------\n");
    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}

#endif

CMD:lspd(playerid,params[])
{
  SetPlayerPos(playerid,1573.5851,-1634.4894,13.5554);
  SendClientMessage(playerid,blue,"Teleported to LSPD");
  return 1;
}

CMD:beach(playerid,params[])
{
  SetPlayerPos(playerid,579.6816,-1858.4364,4.8013);
  SendClientMessage(playerid,blue,"Welcome to the Nooby Beach");
  return 1;
}
CMD:vinewood(playerid,params[])
{
  SetPlayerPos(playerid,1413.2775,-871.3857,46.9813);
  SendClientMessage(playerid,blue,"You've Teleported to Vinewood");
  return 1;
}
CMD:caliguas(playerid,params[])
{
  SetPlayerPos(playerid,2029.2837,1007.9716,10.8203);
  SendClientMessage(playerid,blue,"You've Teleported to Caliguas Casino!");
  return 1;
}
CMD:casino(playerid,params[])
{
  SetPlayerPos(playerid,2183.8904,1682.7854,11.0815);
  SendClientMessage(playerid,blue,"Teleported to the Casino");
  return 1;
}
CMD:lvpd(playerid,params[])
{
  SetPlayerPos(playerid,2287.1602,2421.1780,10.8203);
  SendClientMessage(playerid,blue,"Welcome to LV Police Station");
  return 1;
}
CMD:area51(playerid,params[])
{
  SendClientMessage(playerid,blue,"Welcome To Area 51");
  SetPlayerPos(playerid,155.6370,1871.7196,17.9066);
  SetPlayerTime(playerid,0,0); // Area 51 Looks Good at Night.
  return 1;
}
CMD:dairport(playerid,params[])
{
  SetPlayerPos(playerid,400.3567,2528.2429,16.5589);
  SendClientMessage(playerid,blue,"Welcome to the Desert Airport"); //forgot the name
  return 1;
}
CMD:SFhouse(playerid,params[])
{
  SetPlayerPos(playerid,-2755.8821,376.2397,4.3359);
  SendClientMessage(playerid,blue,"Welcome to San Fierro House"); //forgot the name
  return 1;
}
CMD:sfair(playerid,params[])
{
  SetPlayerPos(playerid,-1349.1910,-240.9855,14.1484);
  SendClientMessage(playerid,blue,"Welcome to San fierro Airport");
  return 1;
}



Re: >>| Teleports Around Los Santos |<< - [HP]Napola - 14.08.2012

thanks :X i need


Re: >>| Teleports Around Los Santos |<< - California_ - 15.08.2012

no problem


Re: >>| Teleports Around Los Santos |<< - necrobg3 - 17.08.2012

Very easy.