phBot Plugins
  • Introduction
  • Example Plugins
  • phBot API
    • Client
    • Guild
    • Events
    • Players
    • Party
    • NPC
    • Character
    • Academy
    • Inventory
    • Pets
    • Monsters
    • Encoding
    • Locale
    • Config
    • Botting
    • Taxi
    • Packet Injection
    • Log
    • Game Data
    • Teleport
    • Training Area
    • Command Line Arguments
    • Movement
    • Quests
    • Drops
    • Paths
    • Script
    • Notifications
    • Alchemy
    • Misc
  • Chat API
  • Handling Script Commands
  • GUI API
Powered by GitBook
On this page
  1. phBot API

Taxi

get_taxi()

This function allows you to retrieve the player's in your taxi party.

Usage

get_taxi()

Returns

None or a dictionary of players in the party taxi. Some values will not be present if the player is not in your party.

remaining is the time remaining in seconds.

party will be set to True or False depending on if they are in your party or not.

player_id can be 0 if you have not seen the player in game.

 {
 	'zzzzzzzz': {
 		'remaining': 3597,
 		'exchanging': False,
 		'party': True,
 		'party_id': 6,
 		'player_id': 38859,
 		'level': 90,
 		'dead': False,
 		'x': 6435.7001953125,
 		'y': 912.0999755859375
 	}
 }
{
	'zzzzzzzz': {
		'remaining': 3597,
		'exchanging': False,
		'party': False
	}
}
PreviousBottingNextPacket Injection

Last updated 2 years ago