Enter/exit problem
#1

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. My main problem is I wanted the yellow triangle that faces down as the entry point , but I cannot find it anywhere, and I dont know if its a pickup , marker , just no idea.

Can anyone help me?
Reply
#2

PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
if(!
strcmp(cmdtext"/enter"true)){
        if(
IsPlayerInRangeOfPoint(playerid13.0x,y,z)){//the place that you want the player be to /enter
            
SetPlayerInterior(playerid,interiorid);//get the interior http://weedarr.wikidot.com/interiornl67e...5.09245291
            
SetPlayerPos(playerid,y,x,z);//interior pos http://weedarr.wikidot.com/interiornl67e...5.09245291
            
GameTextForPlayer(playerid,"Welcome to the Interior!",4000,6);//change interior to anything else
            
return 1;
        }
    }
    if(!
strcmp(cmdtext"/exit"true)){
        if(
IsPlayerInRangeOfPoint(playerid15.0x,y,z)){//the place you want the player type /enter from
            
SetPlayerInterior(playerid,0);//always 0
            
SetPlayerPos(playerid,x,y,z);//the original place that he typed /enter from
            
GameTextForPlayer(playerid,"you left the interior !",4000,6);
            return 
1;
        }
    }
     return 
0;

+rep if it helped and PM me to tell how you to add markers
Reply
#3

Thanks man ,when I figure out how to +rep ill do it (probably right now).

Look at your inbox
Reply
#4

In the end he didnt answer to what I was looking for.Anyone have any idea?
Reply
#5

Quote:
Originally Posted by daastle
My main problem is I wanted the yellow triangle that faces down as the entry point , but I cannot find it anywhere, and I dont know if its a pickup , marker , just no idea.
The yellow marker outside on buildings on single-player is a pickup and it's ID is 1559

So you would have to create the marker however you create your 'bank' or what ever then you'd have to use 'IsPlayerInRangeOfPoint' in a callback which I am not quite sure what you'd put it under.
Reply
#6

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;
}
I'm not sure of your command processor so we'll just use strcmp

Need anymore help, feel free to ask.
Reply
#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
#8

I see what you mean but as he states he is new to scripting, he need to start from the beginning.

There's no point chucking him straight into the deep end.
Reply
#9

i suggest you to use a faster Command Processor
like
zcmd and ycmd
Reply
#10

Quote:
Originally Posted by Deal-or-die
Посмотреть сообщение
The yellow marker outside on buildings on single-player is a pickup and it's ID is 1559

So you would have to create the marker however you create your 'bank' or what ever then you'd have to use 'IsPlayerInRangeOfPoint' in a callback which I am not quite sure what you'd put it under.
(Please note that I am not talking TO deal-or-die but simply taking his post as reference)
So apparently it is an object with id 1559. As everyone else gave you the code to enter with a command let me do it with the pickup:

The easiest way to check if a player is in range is to see if the have picked up the pickup. So lets do that:

pawn Код:
new bankPickup; // lets first create the pickup. This is a global variable so it goes outside any callback

OnGameModeInit() {
    bankPickup = CreatePickup(1559, 2, 0.0, 0.0, 4.0); // create the pickup and assign the ID to the variable
}

OnPlayerPickUpPickup(playerid, pickupid) {
 if(pickupid == bankPickup) { // the player has activated the created pickup
  SetPlayerPos(playerid, 0.0, 0.0, 15.0); // Yes, all it does now is just throw the player in the air some more
  SendClientMessage(playerid, 0x00FF00AA, "Welcome to the bank (yea, there is no bank here)"); // send a message so they know what happened
  return 1;
 }
}
And that is how you automate the player to put him inside the 'bank' when they pick up the pickup
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)