ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
Common Console Commands
2
3
1. Add Item to Inventory:
4
TemplateAddTo("UUID", GetHostCharacter(), quantity)
5
Example adding one Selunite Robe to your inventory:
6
TemplateAddTo("204de787-46de-4d39-8fe0-2e080bf44a61", GetHostCharacter(), 1)
7
8
2. Add Gold:
9
AddGold(GetHostCharacter(), X)
10
Change X to the desired amount of gold you would like to add
11
12
3. Add Experience
13
Osi.AddExplorationExperience(GetHostCharacter(), X)
14
Change X to the amount of xp you need. You need to do this for each toon in the party.
15
16
4. Set Tadpole State
17
SetTadpoleTreeState(GetHostCharacter(), X)
18
19
Replace X with the state you want to achieve:
20
1: Hesitant to use worm powers
21
2: Ready to use worm powers
22
23
5. Add Tadpoles
24
AddTadpole(GetHostCharacter(), X)
25
Replace X with the amount of parasites you want.
26
27
6. Add Inspiration Points
28
Osi.GiveInspirationPoints(GetHostCharacter(), X, "", "")
29
Replace X with the amount of Inspiration Points.
30
31
7. Change Appearance
32
Osi.StartChangeAppearance(GetHostCharacter())
33
I don't know what happens if you're on an origin character and don't have the Appearance Enhanced mod. Might cause issues, so make sure to save before using it.
34
35
8. Respec
36
Osi.StartRespec(GetHostCharacter())
37
38
9. Change Approval
39
Osi.ChangeApprovalRating("COMPANION UUID", GetHostCharacter(), 0, X)
40
41
Change COMPANION UUID with the ID from below. Don't accidentally remove the quotation marks.
42
Change X to the amount you want to add. You can also remove approval by putting a minus before the number.
43
44
Companion UUIDs
45
S_Player_Karlach_2c76687d-93a2-477b-8b18-8a14b549304c
46
S_Player_Minsc_0de603c5-42e2-4811-9dad-f652de080eba
47
S_GOB_DrowCommander_25721313-0c15-4935-8176-9f134385451b -- Minthara
48
S_GLO_Halsin_7628bc0e-52b8-42a7-856a-13a6fd413323
49
S_Player_Jaheira_91b6b200-7d00-4d62-8dc9-99e8339dfa1a
50
S_Player_Gale_ad9af97d-75da-406a-ae13-7071c563f604
51
S_Player_Astarion_c7c13742-bacd-460a-8f65-f864fe41f255
52
S_Player_Laezel_58a69333-40bf-8358-1d17-fff240d7fb12
53
S_Player_Wyll_c774d764-4a17-48dc-b470-32ace9ce447d
54
S_Player_ShadowHeart_3ed74f06-3c60-42dc-83f6-f034cb47c679
55
56
10. Change Party Limit without PartyLimitBegone
57
SetMaxPartySizeOverride(12)
58
Osi.PROC_CheckPartyFull()
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  翻译: