Results 1 to 8 of 8

Thread: {AUTO} ScreenShot on Level Up {HELP}

  1. #1
    Join Date
    Dec 2011
    Location
    -bash
    Posts
    515
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default {AUTO} ScreenShot on Level Up {HELP}

    I found a funtion in simba called

    Code:
    SaveScreenShot
    And I was wondering if anyone knows how to use it. I would like to incorporate it into Simba so that on level up, it can automatically take a screenshot and save it somewhere.

  2. #2
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    Simba Code:
    if LevelUp then
      SaveScreenShot(whatever goes in here);

  3. #3
    Join Date
    Oct 2011
    Posts
    805
    Mentioned
    21 Post(s)
    Quoted
    152 Post(s)

  4. #4
    Join Date
    Dec 2011
    Location
    -bash
    Posts
    515
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    So I have to save it to a location and then make a name for it that ends in .bmp?

  5. #5
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    Quote Originally Posted by Chig View Post
    So I have to save it to a location and then make a name for it that ends in .bmp?
    As far as I was concerned you just entered the file location, but I guess that by ending '+ Level.bmp' it will save it as LevelUp which is a bonus.

  6. #6
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    Just a note, you might want to add the time (or something like that) to the end of the name in case you level up more than once, so
    Simba Code:
    if LevelUp then
      SaveScreenShot(ScriptPath + 'LevelUp ' + TheTime + '.bmp');
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  7. #7
    Join Date
    Dec 2011
    Location
    -bash
    Posts
    515
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    Okay thanks for thanks for the reponses guys! Now how to make it recognise the new level up messages...

  8. #8
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Quote Originally Posted by Chig View Post
    Okay thanks for thanks for the reponses guys! Now how to make it recognise the new level up messages...
    That's what LevelUp is for, it's a built in SRL function

    Simba Code:
    if LevelUp then // LevelUp is a SRL function
      SaveScreenShot(ScriptPath + 'LevelUp ' + TheTime + '.bmp');
    Current Project: Retired

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

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