0% found this document useful (0 votes)
140 views2 pages

Game Guardian Script Menu Functions

This document is a script for a game modification tool created by wyvern, featuring a menu with options for altering game mechanics such as character positions, immortality, and speed hacks. The script allows users to select different dinosaur types for immortality settings and customize speed values. It utilizes functions to search and edit game memory values to implement these changes.

Uploaded by

o56009842
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
140 views2 pages

Game Guardian Script Menu Functions

This document is a script for a game modification tool created by wyvern, featuring a menu with options for altering game mechanics such as character positions, immortality, and speed hacks. The script allows users to select different dinosaur types for immortality settings and customize speed values. It utilizes functions to search and edit game memory values to implement these changes.

Uploaded by

o56009842
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

gg.

setVisible(false)
[Link]('Script by wyvern')

function openMenu()
local menu = [Link]({
"▶ Alien Pos",
"▶ Immo",
"▶ Server Speed",
}, nil, "Script by WY-wyvern")

if menu == 1 then alienPos() end


if menu == 2 then immoMenu() end
if menu == 3 then speedHack() end
if menu == nil then openMenu() end
end

function immoMenu()
local menu = [Link]({
"▶ Immo Velociraptor",
"▶ Immo Compsognathus",
"▶ Immo Dilophosaurus",
"▶ Immo Oviraptor",
"▶ Immo Pteranodon",
"▶ Immo Utah Raptor",
}, nil, "Immo Menu")

if menu == 1 then immo(80) end


if menu == 2 then immo(80) end
if menu == 3 then immoSeq("100F;2F") end
if menu == 4 then immo(120) end
if menu == 5 then immo(150) end
if menu == 6 then immo(150) end
end

function immo(value)
[Link]()
[Link](gg.REGION_ANONYMOUS)
[Link](value, gg.TYPE_FLOAT)
if [Link]() > 0 then
[Link](-15, gg.TYPE_FLOAT)
end
end

function immoSeq(seq)
[Link]()
[Link](gg.REGION_ANONYMOUS)
[Link](seq, gg.TYPE_FLOAT)
if [Link]() > 0 then
[Link](-15, gg.TYPE_FLOAT)
end
end

function alienPos()
[Link]()
[Link](gg.REGION_ANONYMOUS)
[Link](1250, gg.TYPE_FLOAT)
if [Link]() > 0 then
[Link](100000, gg.TYPE_FLOAT)
end
end

function speedHack()
local menu = [Link]({
"▶ Speed x10",
"▶ Speed x5",
"▶ Custom Speed",
}, nil, "Works only if Host / Solo")

if menu == 1 then setSpeed(10) end


if menu == 2 then setSpeed(5) end
if menu == 3 then customSpeed() end
end

function setSpeed(val)
[Link]()
[Link](gg.REGION_ANONYMOUS)
[Link]("1F;1000F", gg.TYPE_FLOAT)
if [Link]() > 0 then
[Link](val, gg.TYPE_FLOAT)
[Link]()
end
end

function customSpeed()
local q = [Link]({"Enter speed value"}, {10}, {"number"})
if q and q[1] then
setSpeed(q[1])
end
end

openMenu()

You might also like