Signup Now
Page 1 of 3 123 LastLast
Results 1 to 10 of 25
  1. #1
    Free User veritho's Avatar
    Join Date
    Jan 2015
    Posts
    35
    Reputation
    10
    Rep Power
    0

    Exclamation close/exit tibia client if player on screen

    I'll start to train and I want to close completely the tibia client (exit tibia) if a player is on my screen thanks

    and also would be nice if you can put a script to take screenshoot if player on screen.

    thanks in advance

  2. #2
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by veritho View Post
    I'll start to train and I want to close completely the tibia client (exit tibia) if a player is on my screen thanks

    and also would be nice if you can put a script to take screenshoot if player on screen.

    thanks in advance
    auto(1000)
    if paround(7) ~= 0 then
    screenshot()
    wait(500,1000)
    closeclient()
    end
    Helped you? REP+

  3. #3
    Free User veritho's Avatar
    Join Date
    Jan 2015
    Posts
    35
    Reputation
    10
    Rep Power
    0
    thanks somuch rep for you <3

  4. #4
    Free User veritho's Avatar
    Join Date
    Jan 2015
    Posts
    35
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by noxvia View Post
    Just go into Alarms.

    "Player On Screen" --> "Logout" --> "Close Client".

    No need for a script for this

    @veritho
    Thank you I'll check later <3

  5. #5
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @veritho

    Made one with a White List for you, if you have other chars that need to enter the screen or have friends that are sneaking up and checking on you. Could be useful.

    init start
    local WhiteList = {"Bubble", "Eternal Oblivion"} -- People to be allowed on screen
    local MinPlayers = 1 -- Min. amount of players on screen to logout
    local Screenshot = true -- true/false to enable/disable screenshotting
    init end

    auto(400)

    foreach creature p "ps" do
    if (paround(7) >= MinPlayers) and (not table.find(WhiteList, p.name)) then
    if (Screenshot) then
    focusclient()
    waitping()
    screenshot()
    end
    closeclient()
    end
    end

  6. #6
    Free User veritho's Avatar
    Join Date
    Jan 2015
    Posts
    35
    Reputation
    10
    Rep Power
    0
    aww thanks I'll try that one rep 4 you <3

  7. #7
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,579
    Reputation
    149
    Rep Power
    27
    Quote Originally Posted by veritho View Post
    aww thanks I'll try that one rep 4 you <3
    Rep does nothing, if you dont have any Rep Power points...

  8. #8
    Free User veritho's Avatar
    Join Date
    Jan 2015
    Posts
    35
    Reputation
    10
    Rep Power
    0
    I didn't know that sorry

  9. #9
    Free User veritho's Avatar
    Join Date
    Jan 2015
    Posts
    35
    Reputation
    10
    Rep Power
    0
    haha okay.. xD fight of helpers! xD

  10. #10
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @noxvia @veritho

    The built in log-out function doesn't provide screenshots as far as i'm concerned which is also what s/he wanted.

 

 

Posting Permissions

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