Need help!!!
#1

I made a teleport command
using this


SetPlayerPos(playerid, 1234.234, 2142.1245, 2457.5243); // edited


but when i get teleported there with a vehicle i cant see any objects!

but when i get off my vehicle ... every thing is seen!

pls help
Reply
#2

Maybe because the teleport leads to another int (else than 0)
Reply
#3

wad does that mean ?
Reply
#4

in your teleport command do you have
pawn Код:
SetPlayerInterior(playerid,interiorid);
?
Reply
#5

no im currently using this :


Код:
	if(strcmp(cmdtext, "/stunt", true) == 0)
	{

	  SetPlayerPos(playerid, 15.121410369873, 1991.1104736328, 3910.7917480469);
		return 1;
  }
Reply
#6

When you go to the place on foot , you can see everything properly ?
Reply
#7

yeaa! i can see when! i go on foot!

but when i go with a bike i cant see nything!
and when i get off my bike!

i see everything
Reply
#8

PLease help
Reply
#9

pawn Код:
if(strcmp(cmdtext, "/stunt", true) == 0)
    {
    new car;
    car = GetPlayerVehicleID(playerid);
      if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
      {
      SetVehiclePos(car,15.121410369873, 1991.1104736328, 3910.7917480469);
      }
      else
      {

      SetPlayerPos(playerid, 15.121410369873, 1991.1104736328, 3910.7917480469);
      }
     return 1;
  }
Try something like this
Reply
#10

i dont need the player in a vehicle!!!

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)