Thanks to visit codestin.com
Credit goes to www.scribd.com

100% found this document useful (1 vote)
3K views2 pages

The Wolf - Script - Lua

This document is a script for a game hack that provides unlimited coins, gems, and moonstones. It includes user prompts for inputting current amounts and uses game guardian functions to manipulate game data. The script warns users about potential account bans and includes an exit option.

Uploaded by

oa04713
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
100% found this document useful (1 vote)
3K views2 pages

The Wolf - Script - Lua

This document is a script for a game hack that provides unlimited coins, gems, and moonstones. It includes user prompts for inputting current amounts and uses game guardian functions to manipulate game data. The script warns users about potential account bans and includes an exit option.

Uploaded by

oa04713
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
You are on page 1/ 2

::messages::

---START---
gg.toast("🔰Welcome🔰") --first message
gg.sleep('900') --9 milliseconds waiting
gg.alert('🔰Use this script be carefully\nThis Script cause ban accounts🔰') --second
message

::menu:: ---START menu


function START() ---second START
HOME = gg.choice ({
'Unlimited Coins 💰', ---HOME 1
'Unlimited Gems 💎', ---HOME 2
'Unlimited Moonstones 🌛', ---HOME 3
'Exit'}, nil ,'🐺The Wolf Script🐺')

---START functions---

if HOME == 1 then ---First function---

gg.clearResults()
gg.toast("🔰Procces...")
gg.sleep('900')
local coins = gg.prompt({
"i💰How much coins you have ?"}, nil ,{"number"})
gg.setRanges(gg.REGION_ANONYMOUS) ---First Region---
gg.searchNumber(coins[1] .. "+X12",gg.TYPE_DWORD)---Searching first number---
gg.getResults(100000)--Results finding--
gg.toast("Prooccess...")--Waiting--
gg.sleep('900')--Wait 9 milliseconds again--
gg.alert('Kill animals to get coins')--message number 3--
gg.sleep('9000')--Wait--
local money = gg.prompt({
"i💰How much coins you have now?"}, nil ,{"number"})
gg.refineNumber(money[1] .. "+X12",gg.TYPE_DWORD)--first numbet refine--
revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil)
if 1 > gg.getResultCount() then
gg.alert("⚠️Couldn't activate this hack at the moment😪 \nTry again or restart
the Game ♨️")---Not find anything---
else
gg.getResults(100000)--Results finding---
gg.editAll('4,000,000,000X12',gg.TYPE_DWORD)---Edit numbers---
gg.clearResults()--clearing results--
gg.toast("Success.... Unlimited Coins !💰")
end
end

if HOME == 2 then --Second function--


gg.clearResults()
gg.toast("🔰Procces...")
gg.sleep('900')
local gems = gg.prompt({
"i💎How much gems you have ?"}, nil ,{"number"})
gg.setRanges(gg.REGION_ANONYMOUS) ---First Region---
gg.searchNumber(gems[1] .. "+X12",gg.TYPE_DWORD)---Searching first number---
gg.getResults(100000)--Results finding--
gg.toast("Prooccess...")--Waiting--
gg.sleep('900')--Wait 9 milliseconds again--
gg.alert('Kill animals to get level or collect something that give gems or exp to
level get gems')--message number 3--
gg.sleep('9000')--Wait--
local diamonds = gg.prompt({
"i💎How much gems you have now?"}, nil ,{"number"})
gg.refineNumber(diamonds[1] .. "+X12",gg.TYPE_DWORD)--first numbet refine--
revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil)
if 1 > gg.getResultCount() then
gg.alert("⚠️Couldn't activate this hack at the moment😪 \nTry again or restart
the Game ♨️")---Not find anything---
else
gg.getResults(100000)--Results finding---
gg.editAll('4,000,000,000X12',gg.TYPE_DWORD)---Edit numbers---
gg.clearResults()--clearing results--
gg.toast("Success.... Unlimited Gems !💎")
end
end

if HOME == 3 then --3nd function---


gg.clearResults()
gg.toast("🔰Procces...")
gg.sleep('900')
local moonstones = gg.prompt({
"i🌛How much moonstones you have ?"}, nil ,{"number"})
gg.setRanges(gg.REGION_ANONYMOUS) ---First Region---
gg.searchNumber(moonstones[1] .. "+X12",gg.TYPE_DWORD)---Searching first number---
gg.getResults(100000)--Results finding--
gg.toast("Prooccess...")--Waiting--
gg.sleep('900')--Wait 9 milliseconds again--
gg.alert('Collect something that gives moonstones from daily quests or collect from
pas 5 moonstones')--message number 3--
gg.sleep('9000')--Wait--
local lunars = gg.prompt({
"i🌛How much moonstones you have now?"}, nil ,{"number"})
gg.refineNumber(lunars[1] .. "+X12",gg.TYPE_DWORD)--first numbet refine--
revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil)
if 1 > gg.getResultCount() then
gg.alert("⚠️Couldn't activate this hack at the moment😪 \nTry again or restart
the Game ♨️")---Not find anything---
else
gg.getResults(100000)--Results finding---
gg.editAll('4,000,000,000X12',gg.TYPE_DWORD)---Edit numbers---
gg.clearResults()--clearing results--
gg.toast("Success.... Unlimited Moonstones !🌛")
end
end

if HOME == 4 then --4nd function--


gg.alert('❤️Thanks for using my script❤️')
os.exit()
end

end
while (true) do
if gg.isVisible(true) then
gg.setVisible(false)
START()
end
end

You might also like