Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Test gettagdata on bloodgulch using the scorpion's collision adress with sparky's plugin --
- scorpion_coll_address = 0xAF9FD0
- function GetRequiredVersion() return 200 end
- function OnScriptLoad(processid, game, persistent) end
- function OnServerChat(player, type, message)
- local response = nil
- if player then
- if string.lower(message) == "tag" then
- local response = false
- local tag_name_address = readdword(scorpion_coll_address + 0x10)
- local tag_name = readstring(tag_name_address)
- privatesay(player, the_tag_name, false)
- return response
- end
- end
- return response
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement