I would really appreciate if someone could make or post a script that you already have that will simply close th tibia client if the character gets an unjustified kill.
Thank you in advance :)
Printable View
I would really appreciate if someone could make or post a script that you already have that will simply close th tibia client if the character gets an unjustified kill.
Thank you in advance :)
turning off targeting looter and walkerCode:GenericTextMessageProxy.OnReceive("", function(proxy, message)
if (string.find(string.lower(message), "the murder of")) then
Walker.Stop()
Targeting.Stop()
Looter.Stop()
end
end)
closing clientCode:GenericTextMessageProxy.OnReceive("", function(proxy, message)
if (string.find(string.lower(message), "the murder of")) then
os.exit()
end
end)