XenoBot Forums - Powered by vBulletin

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24

Thread: A Pallys Way

  1. #11

    Join Date
    Mar 2014
    Location
    Long Island
    Posts
    379
    Mentioned
    54 Post(s)
    Tagged
    0 Thread(s)
    @Adrax 13, the spot name is Mistrock if you're curious ^^

    My name is Proteus!
    This is my Signature.
    Thanks.

  2. #12
    Adrax 13's Avatar
    Join Date
    Dec 2014
    Location
    The Sky
    Posts
    209
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by buyer View Post
    Nice project
    Thank you good sir

    There is something wrong with my computer where its not saving the screen shots so right now im going to be off line training till my buddy can figure it out, hopefully
    Right now im level 36

  3. #13
    Adrax 13's Avatar
    Join Date
    Dec 2014
    Location
    The Sky
    Posts
    209
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    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!

  4. #14
    Super Moderator Luls's Avatar
    Join Date
    Dec 2010
    Location
    Canadaaaa.
    Posts
    1,976
    Mentioned
    186 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Proteus View Post
    @Adrax 13, the spot name is Mistrock if you're curious ^^
    Quote Originally Posted by Adrax 13 View Post
    Thank you good sir

    There is something wrong with my computer where its not saving the screen shots so right now im going to be off line training till my buddy can figure it out, hopefully
    Right now im level 36
    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

  5. #15

    Join Date
    Mar 2014
    Location
    Long Island
    Posts
    379
    Mentioned
    54 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Luls View Post
    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

    My name is Proteus!
    This is my Signature.
    Thanks.

  6. #16
    Adrax 13's Avatar
    Join Date
    Dec 2014
    Location
    The Sky
    Posts
    209
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    Same not a problem , he is actually my best friend and like @Proteus stated I've tried that script already and nothing :/ . If you have any ideas what could be wrong or of a new script that would be lovely @Luls

  7. #17
    Super Moderator Luls's Avatar
    Join Date
    Dec 2010
    Location
    Canadaaaa.
    Posts
    1,976
    Mentioned
    186 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Adrax 13 View Post
    If you have any ideas what could be wrong or of a new script that would be lovely @Luls
    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

  8. #18
    Adrax 13's Avatar
    Join Date
    Dec 2014
    Location
    The Sky
    Posts
    209
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Luls View Post
    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
    Last edited by Adrax 13; 01-12-2016 at 09:03 PM.

  9. #19
    Super Moderator Luls's Avatar
    Join Date
    Dec 2010
    Location
    Canadaaaa.
    Posts
    1,976
    Mentioned
    186 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Adrax 13 View Post
    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

    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

  10. #20
    Adrax 13's Avatar
    Join Date
    Dec 2014
    Location
    The Sky
    Posts
    209
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Luls View Post
    try this one

    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
    Still nothing :'(

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •