@Adrax 13, the spot name is Mistrock if you're curious ^^
Printable View
@Adrax 13, the spot name is Mistrock if you're curious ^^
Update!
Still waiting on screen shot script if anyone has a working one that would be great so I can get the ball rolling I'll be updating my states and armor soon!
Mind if I ask how you two know each other?
And here's a screenshot script
Code:-- //////////////////////////////////
-- // ___ _ //
-- // / _ \ (_) //
-- // / /_\ \_ ____ _ _ __ _ //
-- // | _ \ \ / / _` | '_ \| | //
-- // | | | |\ V / (_| | | | | | //
-- // \_| |_/ \_/ \__,_|_| |_|_| //
-- // //
-- //////////////////////////////////
---------------------------------------------------------------
------------------------ SETTINGS ---------------------------
---------------------------------------------------------------
LevelUp = true -- Will take a screenshot when leveling up
Death = true -- Will take a screenshot upon death
Stamina = false -- Will take a screenshot if below 14:00 stamina
---------------------------------------------------------------
------------- DO NOT CHANGE ANYTHING BELOW ------------------
---------------------------------------------------------------
Level = Self.Level()
Name = Self.Name()
while true do
if Name ~= Self.Name() then
Level = Self.Level()
Name = Self.Name()
end
if (LevelUp) then
if Self.Level() > Level then
wait(200)
screenshot(Self.Name() .. "_level_" .. Self.Level())
wait(1000)
Level = Self.Level()
end
end
if (Death) then
if Self.Health() == 0 then
screenshot(Self.Name() .. "_death_" .. os.date("%H.%M"))
wait(1000)
Death = false
end
end
if (Death) then
if Self.Health() == 0 then
screenshot(Self.Name() .. "_magic_" .. os.date("%H.%M"))
wait(1000)
Death = false
end
end
if (Stamina) then
if Self.Stamina() < 840 then
screenshot(Self.Name() .. "_LowStamina_" .. os.date("%H.%M"))
wait(1000)
Stamina = false
end
end
wait(5000)
end
I don't mind at all! He lives right around the corner from my house lol we went to high school together
I gave him that script first and it didn't work, so I just tried to load a script (via team viewer) for screenshot(Self.Name()) and it wouldn't even run that. Idk if its just not storing in the screenshot folder (happened to me a few times and found them in settings/scripts) but it doesn't seem like it saved anywhere at all lol
Try this one. I think this is the one I meant to post the first time.
Code:-- //////////////////////////////////
-- // ___ _ //
-- // / _ \ (_) //
-- // / /_\ \_ ____ _ _ __ _ //
-- // | _ \ \ / / _` | '_ \| | //
-- // | | | |\ V / (_| | | | | | //
-- // \_| |_/ \_/ \__,_|_| |_|_| //
-- // //
-- //////////////////////////////////
---------------------------------------------------------------
------------------------ SETTINGS ---------------------------
---------------------------------------------------------------
LevelUp = true -- Will take a screenshot when leveling up
Death = true -- Will take a screenshot upon death
Stamina = true -- Will take a screenshot if below 14:00 stamina
Skull = true -- Will take a screenshot when you get a skull
---------------------------------------------------------------
------------- DO NOT CHANGE ANYTHING BELOW ------------------
---------------------------------------------------------------
Level = Self.Level()
Name = Self.Name()
function takeScreenshot()
if Name ~= Self.Name() then
Level = Self.Level()
Name = Self.Name()
end
if (LevelUp == true) then
if Self.Level() > Level then
wait(200)
screenshot(Self.Name() .. "_level_" .. Self.Level())
wait(1000)
Level = Self.Level()
end
end
if (Death == true) then
if Self.Health() == 0 then
screenshot(Self.Name() .. "_death_" .. os.date("%H.%M"))
wait(1000)
Death = false
end
end
if (Stamina == true) then
if Self.Stamina() < 840 then
screenshot(Self.Name() .. "_LowStamina_" .. os.date("%H.%M"))
wait(1000)
Stamina = false
end
end
if (Skull == true) then
if (Self.Skull() ~= 0) and (activeSkull == false) then
screenshot(Self.Name() .. "_Skull_" .. os.date("%H.%M"))
wait(1000)
activeSkull = true
elseif (Self.Skull() == 0) and (activeSkull == true) then
activeSkull = false
end
end
end
while true do
takeScreenshot()
end
Okay i'll give this one a shot, just tested out the first one and no good :/
Edit: @Luls nope still didn't take the screenshot
try this one :confused:
Code:--[[
This is a XenoBot example script, intended to
teach new users about the scripting API and
act as script that is usable in actual play.
levelupScreenshot.lua - takes a screenshot upon level up
** DO NOT EDIT THIS FILE. INSTEAD, COPY IT TO
"Documents\XenoBot\Scripts" AND EDIT THE COPY. **
]]--
--this continuously loops, executing the code inside over and over again
while (true) do
local name = Self.Name() --stores our name at the start
local level = Self.Level() --stores our level at the start
--this loops until our name changes (meaning we switched characters)
while (name == Self.Name()) do
--this checks if our level has increased, and screenshots if so
if (Self.Level() > level) then
level = Self.Level() --updates the stored level
screenshot(name .. " level " .. level) --filename is "{name} level {level}
end
--this causes the loop to wait between 1 and 2 seconds before retrying
wait(1500, 2500)
end
end