forked from ornfelt/azerothcore_lua_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_vip.lua
More file actions
34 lines (28 loc) · 1.05 KB
/
config_vip.lua
File metadata and controls
34 lines (28 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--[[ DO NOT EDIT ]] --
VIP = {}
VIP.Config = {}
VIP.Config.Actions = {}
VIP.Config.Texts = {}
-- [[ FROM HERE YOU CAN EDIT ]] --
-- Misc
-- ID of the Transmorgifier NPC
VIP.Config.TransmorgifierID = 190010
-- ItemID you entered in vip_item.sql
VIP.Config.ItemID = 100001
-- Texts
VIP.Config.Texts.YesVIP = "[VIP] Sos VIP <3."
VIP.Config.Texts.NoVIP = "[VIP] No sos VIP :("
VIP.Config.Texts.AuctioneerError = "[VIP] Error interno al spawnear subastador."
VIP.Config.Texts.CDReset = "Se reseteo el CD de la piedra."
VIP.Config.Texts.Repair = "Se han reparado todos tus items."
-- Actions
-- Format is {Enabled, Text, ListID(Unique)}
VIP.Config.Actions.Bank = {true, "Banco", 0}
VIP.Config.Actions.Auction = {true, "Subasta", 1}
VIP.Config.Actions.Mail = {true, "Correo", 2}
-- Requires https://github.com/azerothcore/mod-transmog
VIP.Config.Actions.Transmog = {false, "Transmog", 3}
--
VIP.Config.Actions.Hearthstone = {true, "Resetear CD Piedra", 4}
VIP.Config.Actions.Repair = {true, "Reparar Items", 5}
VIP.Config.Actions.NeutralAuction = {true, "Subasta Neutral", 6}