Pickup, Just for admin
#12

Try this: ( i never tested it )
Код:
#include <a_samp>

#define FILTERSCRIPT

#define COLOR_GREY 0xAFAFAFAA
#define COLOR_CRIMSON 0xDC143CAA

//Checkpoints
new EnterHouse, LeaveHouse;


public OnFilterScriptInit()
{
    print("\n-----------------------------------------");
    print(" Checkpoints By Larsey123");
    print("-------------------------------------------\n");

    //Checkpoints
    EnterHouse = CreatePickup(1273, 23, 966.84710693359,2133.0017089844,10.8203125);
    LeaveHouse = CreatePickup(1273, 23, 965.08758544922,-53.164505004883,1001.1245727539);

    return 1;
}

public OnPlayerPickUpPickup(playerid, pickupid)
{
    if( pickupid == EnterHouse && IsPlayerAdmin(playerid))
    {
      SetPlayerPos(playerid,963.37561035156,-53.307209014893,1001.124572);
      SetPlayerInterior(playerid,  3 );
      SendClientMessage(playerid,COLOR_CRIMSON,"Welcome to the Admin House!");
      }
    if( pickupid == LeaveHouse && IsPlayerAdmin(playerid))
    {
      SetPlayerPos(playerid,969.80432128906,2133.1311035156,10.8203);
      SetPlayerInterior(playerid,  0 );
      SendClientMessage(playerid,COLOR_CRIMSON,"You have left the Admin House!");
			}
			else
			{
			    SendClientMessage(playerid, COLOR_GREY, "   You are not authorized to use that command !");
   }
		return 1;
	}
Reply


Messages In This Thread
Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 16:34
Re: Pickup, Just for admin - by blackwave - 07.11.2010, 16:49
Re: Pickup, Just for admin - by Cameltoe - 07.11.2010, 16:54
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 17:18
Re: Pickup, Just for admin - by WillyP - 07.11.2010, 17:28
Re: Pickup, Just for admin - by blackwave - 07.11.2010, 17:36
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 18:11
Re: Pickup, Just for admin - by playbox12 - 07.11.2010, 19:36
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 20:04
Re: Pickup, Just for admin - by WillyP - 07.11.2010, 20:07
Re: Pickup, Just for admin - by Blatnoi - 07.11.2010, 20:09
Re: Pickup, Just for admin - by gychem - 07.11.2010, 20:10
Re: Pickup, Just for admin - by WillyP - 07.11.2010, 20:16
Re: Pickup, Just for admin - by Blatnoi - 07.11.2010, 20:20
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 20:21
Re: Pickup, Just for admin - by WillyP - 07.11.2010, 20:37
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 20:48
Re: Pickup, Just for admin - by blackwave - 07.11.2010, 20:57
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 21:00
Re: Pickup, Just for admin - by HotRod - 07.11.2010, 21:27
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 21:31
Re: Pickup, Just for admin - by HotRod - 07.11.2010, 21:36
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 21:38
Re: Pickup, Just for admin - by Larsey123IsMe - 07.11.2010, 23:27

Forum Jump:


Users browsing this thread: 2 Guest(s)