Log in

View Full Version : How you guys make screenshots when advance?



Yasje
07-24-2012, 12:32 AM
Hello all,

Like the title says/\

How you people do it?

Cause there aren't any script and i dont know other solution to make screenshot when afk :P

Hope you guys can tell me and help the others!

Greets,

Yasje

Flappy Joe
07-24-2012, 12:34 AM
http://c.ancestry.com/Affiliate/Knowledgebase/Images/Ancestry/2295-1.png

Vendelikoo
07-24-2012, 12:49 AM
Press print screen>go to paint>click ctrl+v [paste]>Save it

thorekz
07-24-2012, 12:52 AM
He said and im quoting "...when afk" Lols

Vendelikoo
07-24-2012, 12:56 AM
Thats impossible :(

Yasje
07-24-2012, 01:21 AM
He said and im quoting "...when afk" Lols
You are the first one that read correctly.

People next time read better and dont talk nonsens **** in this thread.

Infernal Bolt
07-24-2012, 03:17 AM
I got a script that alarms if I have under 1k exp to level, tell me if you want it :P

Yasje
07-24-2012, 02:20 PM
I got a script that alarms if I have under 1k exp to level, tell me if you want it :P

yeah sure send me :D

If i got maybe home i will use it :D

Infernal Bolt
07-24-2012, 03:06 PM
function Self.ExpToLevel(level)
local x = level or Self.Level() + 1
return ((50 / 3) * (x^3 - 6 * x^2 + 17 * x - 12)) - Self.Experience()
end

local threshold = 1000
while(true)do
if(Self.ExpToLevel() < threshold)then
alert()
end
wait(1000)
end

Yasje
07-24-2012, 03:38 PM
Thanks :D