phBot Plugins
Search…
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
Misc
Chat API
Handling Script Commands
GUI API
Powered By
GitBook
Guild
get_guild
Returns a dictionary of all guild members.
Usage
get_guild()
Returns
A dictionary of guild members or
None
if you are not in game. The dictionary key is the guild member ID.
1
{
2
10944: {
3
'donated_gp': 35774,
4
'authority': 13,
5
'level': 50,
6
'online': 0,
7
'name': 'TAKER',
8
'region': 0,
9
'model': 14884
10
},
11
12308: {
12
'donated_gp': 265026,
13
'authority': 13,
14
'level': 69,
15
'online': 0,
16
'name': 'Pattylacks',
17
'region': 0,
18
'model': 1911
19
},
20
9780: {
21
'donated_gp': 281785,
22
'authority': 4294967295,
23
'level': 90,
24
'online': 0,
25
'name': 'NotAnt',
26
'region': 0,
27
'model': 1927
28
},
29
10837: {
30
'donated_gp': 282416,
31
'authority': 13,
32
'level': 81,
33
'online': 0,
34
'name': 'shark',
35
'region': 0,
36
'model': 1912
37
},
38
10281: {
39
'donated_gp': 266365,
40
'authority': 13,
41
'level': 70,
42
'online': 0,
43
'name': 'Zach',
44
'region': 0,
45
'model': 14891
46
},
47
10265: {
48
'donated_gp': 367015,
49
'authority': 31,
50
'level': 87,
51
'online': 0,
52
'name': 'Dave',
53
'region': 0,
54
'model': 1927
55
},
56
10826: {
57
'donated_gp': 318875,
58
'authority': 29,
59
'level': 73,
60
'online': 0,
61
'name': 'Nick',
62
'region': 0,
63
'model': 14887
64
},
65
10839: {
66
'donated_gp': 457117,
67
'authority': 29,
68
'level': 89,
69
'online': 0,
70
'name': 'Alexander',
71
'region': 0,
72
'model': 14882
73
},
74
7758: {
75
'donated_gp': 260691,
76
'authority': 31,
77
'level': 90,
78
'online': 1,
79
'name': '1337WeeMan',
80
'region': 0,
81
'model': 1928
82
}
83
}
Copied!
get_guild_union
Returns a dictionary of guild union members.
Usage
get_guild_union()
Returns
A dictionary of guild union members or
None
if you are not in game. The dictionary key is the union ID.
1
{
2
928: {
3
'name': 'ResPecT',
4
'count': 49,
5
'level': 5,
6
'master': 'Ruger'
7
},
8
1130: {
9
'name': 'Defiance',
10
'count': 11,
11
'level': 5,
12
'master': '_SwipeR_'
13
},
14
982: {
15
'name': '_ResPecT_',
16
'count': 20,
17
'level': 5,
18
'master': 'Serenity'
19
}
20
}
Copied!
Previous
Client
Next
Events
Last modified
2yr ago
Copy link
Contents
get_guild
get_guild_union