Results 1 to 4 of 4

Thread: What does the function IsUpText do exactly?

  1. #1
    Join Date
    Jun 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default What does the function IsUpText do exactly?

    And is there a documentation online to find out what each procedure/function does? Going through the .simba files one by one is kind of tedious, not to mention the descriptions aren't exactly the most detailed.

  2. #2
    Join Date
    Nov 2011
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    It reruns true if text found in up text.

    http://wizzup.org/srl5doc/text.html

  3. #3
    Join Date
    Mar 2012
    Location
    Color :D
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    At the function list at the left side of Simba, you can just type 'uptext', then double click on the function you want. Or here : https://docs.villavu.com/srl-5/index.html

    if IsUptext('Attack') then
    writeln('Found')
    else
    writeln('Not found');

    It means if the uptext of Attack is found, which is the text 'Attack' when you hover on a monster, then it will write Found in the debug, else it will write Not found.

  4. #4
    Join Date
    Jun 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So uptext is just the thing on the top left of the screen when you hover over something. Thanks

Thread Information

Users Browsing this Thread

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

Posting Permissions

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