-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathPrestigeArena2k.lua
31 lines (25 loc) · 1.06 KB
/
PrestigeArena2k.lua
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
local npcid = XXX --npc id
local MaxRating = XXX --Raiting
local TitleReward = XXX --Title
local Items = {XXX} --Random items u want them to get
local function onGossipHello(event, player, object)
local Q = CharDBQuery("SELECT rating FROM arena_team WHERE captainGuid='" .. player:GetGUIDLow() .. "';")
local Rating = Q:GetUInt32(0)
player:GossipMenuAddItem(0, "You need " .. MaxRating .. " to be eligible for rewards you got " .. Rating, 0, 1)
if Rating >= MaxRating then
player:GossipMenuAddItem(0, "Arena Rewards", 0, 2)
end
player:GossipSendMenu(1, object)
end
local function onGossipSelect(event, player, object, sender, intid, code, menu_id)
if (intid == 2) then
player:SetKnownTitle(TitleReward)
for _, v in pairs(Items) do
player:AddItem(v, 1)
end
player:SendBroadcastMessage("|cFFFFFF9F" .. object:GetName() .. " says: Ah you got the fame!")
end
player:GossipComplete()
end
RegisterCreatureGossipEvent(npcid, 1, onGossipHello)
RegisterCreatureGossipEvent(npcid, 2, onGossipSelect)