Likes: 0
Results 1 to 1 of 1
Thread: [ArcEmu]: PvP Title System (Lua)
-
22-04-12, 03:51 AM #1
[ArcEmu]: PvP Title System (Lua)
Register to remove this adOriginally Posted by Foereaper
Code:local T = { {1, 15, 100}, {2, 16, 500}, {3, 17, 1000}, {4, 18, 2000}, {5, 19, 4000}, {6, 20, 5000}, {7, 21, 6000}, {8, 22, 8000}, {9, 23, 1000}, {10, 24, 15000}, {11, 25, 25000}, {12, 26, 40000}, {13, 27, 45000}, {14, 28, 50000}, {126, 127, 75000}; }; function OnKilledTarget(event, plr, victim) for i = 1, #T do if (plr:LifeTimeKills(0, nil) == T[i][3]) then plr:SetKnownTitle(T[i][plr:GetTeam()+1]) end end end RegisterServerHook(2, OnKilledTarget)
› See More: [ArcEmu]: PvP Title System (Lua)Last edited by Wise; 22-04-12 at 03:57 AM.