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

Quests

get_quests()

Returns a dictionary of all active quests or None if you are not in game.

{
	616: {
		'type': 24,
		'name': 'Proof of Strength 2 (Hunter)',
		'npc': [26827],
		'servername': 'QNO_SD_GU_013',
		'objectives_completed': False,
		'completed': False
	},
	228: {
		'type': 24,
		'name': 'Undercloth Thief 3',
		'npc': [7538],
		'servername': 'QNO_CA_THIEF_3',
		'objectives_completed': False,
		'completed': False
	},
	613: {
		'type': 24,
		'name': 'Hunting in the Middle of the Temple Dispute 1 (Hunter)',
		'npc': [26827],
		'servername': 'QNO_SD_GU_010',
		'objectives_completed': False,
		'completed': False
	},
	614: {
		'type': 24,
		'name': 'Hunting in the Middle of the Temple Dispute 2 (Hunter)',
		'npc': [26827],
		'servername': 'QNO_SD_GU_011',
		'objectives_completed': False,
		'completed': False
	},
	615: {
		'type': 24,
		'name': 'Proof of Strength 1 (Hunter)',
		'npc': [26827],
		'servername': 'QNO_SD_GU_012',
		'objectives_completed': False,
		'completed': False
	}
}
PreviousMovementNextDrops

Last updated 6 years ago