Enter/exit problem
#7

Hmmm.. I am pretty sure he wants a system so that when you get close to a door without having to type anything it spawns you into that interior basically like single player.

This is how I read it.
Quote:
Originally Posted by daastle
So here is my idea.I want to make , lets say , a bank . So what I want to enter is an automatic "get close to the door" thing.
-So here is my idea. I want to make, lets say, a bank . So I want to be automatically placed inside the interior when you get close to the door icon.

I may be wrong and please correct me if I am but, it doesn't seem like he wants a /enter /exit command from my perspective.


Side note,
You should probably want to set the virtual world too.
Quote:
Originally Posted by Boooth
Посмотреть сообщение
pawn Код:
public OnGameModeInit() {
CreatePickup(1559, 23, X, Y, Z, VirtualWorld);

public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/enter", true))
    {
        if(IsPlayerInRangeOfPoint(playerid, 5.0, X, Y, Z)) //This checks to see if the player is within the marker
        {
            SetPlayerInterior(playerid, interiorid);//
            SetPlayerPos(playerid, X, Y, Z);//interior pos http://weedarr.wikidot.com/interior
        }
        return 1;
    }
    if(!strcmp(cmdtext, "/exit", true))
    {
        if(IsPlayerInRangeOfPoint(playerid, 5.0, X, Y, Z))
        {
            SetPlayerInterior(playerid, interiorid);
            SetPlayerPos(playerid, X, Y, Z);
        }
        return 1;
    }
    return 0;
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(!strcmp(cmdtext, "/enter", true))
    {
        if(IsPlayerInRangeOfPoint(playerid, 5.0, X, Y, Z)) //This checks to see if the player is within the marker
        {
            SetPlayerInterior(playerid, interiorid);//
            SetPlayerVirtualWorld(playerid,worldid)
            SetPlayerPos(playerid, X, Y, Z);//interior pos http://weedarr.wikidot.com/interior
        }
        return 1;
    }
    if(!strcmp(cmdtext, "/exit", true))
    {
        if(IsPlayerInRangeOfPoint(playerid, 5.0, X, Y, Z))
        {
            SetPlayerInterior(playerid, interiorid);
            SetPlayerVirtualWorld(playerid,worldid)
            SetPlayerPos(playerid, X, Y, Z);
        }
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
Enter/exit problem - by daastle - 13.09.2012, 15:11
Re: Enter/exit problem - by xMCx - 13.09.2012, 15:18
Re: Enter/exit problem - by daastle - 13.09.2012, 16:14
Re: Enter/exit problem - by daastle - 13.09.2012, 21:48
Re: Enter/exit problem - by Deal-or-die - 14.09.2012, 02:24
Re: Enter/exit problem - by Boooth - 14.09.2012, 02:53
Re: Enter/exit problem - by Deal-or-die - 14.09.2012, 03:22
Re: Enter/exit problem - by Boooth - 14.09.2012, 03:42
Re: Enter/exit problem - by Devilxz97 - 14.09.2012, 03:54
Re: Enter/exit problem - by mamorunl - 14.09.2012, 09:20

Forum Jump:


Users browsing this thread: 1 Guest(s)