Results 1 to 13 of 13

Thread: Old uptext

  1. #1
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Old uptext

    How can I get the old uptext font files? Similar to this:

  2. #2
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    Should still be included in Simba, but with a different name (UpCharsEx? No idea)
    I made a new script, check it out!.

  3. #3
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    I'm pretty sure they are still called "UpChars". I think the new ones are called UpCharsEx.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  4. #4
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    I'm pretty sure they are still called "UpChars". I think the new ones are called UpCharsEx.
    No, I think the old ones are UpCharsEx.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  5. #5
    Join Date
    Nov 2010
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    No, I think the old ones are UpCharsEx.
    That doesn't seem to work for me though, cause the old fonts are mostly used for Private Servers would be usefull for me I tried this

    Simba Code:
    program New;

    {$i SRL/SRL.scar}



    var x,y:Integer;


    begin
    SetupSRL;

     MMouse(619, 228, 0, 0)
     Wait(50);
     If UpCharsEx('eedle') then
        Begin
         WriteLn('We found the Needle!');
        End;
    end.

    Gives me this

    Code:
    [Error] (16:14): Type mismatch at line 15
    Compiling failed.
    I'm probably doing something wrong, but I don't know what.

  6. #6
    Join Date
    Nov 2011
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Failure View Post
    That doesn't seem to work for me though, cause the old fonts are mostly used for Private Servers would be usefull for me I tried this

    Simba Code:
    program New;

    {$i SRL/SRL.scar}



    var x,y:Integer;


    begin
    SetupSRL;

     MMouse(619, 228, 0, 0)
     Wait(50);
     If UpCharsEx('eedle') then
        Begin
         WriteLn('We found the Needle!');
        End;
    end.

    Gives me this

    Code:
    [Error] (16:14): Type mismatch at line 15
    Compiling failed.
    I'm probably doing something wrong, but I don't know what.
    Use
    IF IsUpTextEx('eedle') then

  7. #7
    Join Date
    Nov 2010
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by wasfer View Post
    Use
    IF IsUpTextEx('eedle') then
    Tried but only moves the mouse but doesn't find the Needle string, nor prints it then.

  8. #8
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    If you don't want to macro on the new runescape, just rename the UpChars folder to UpCharsNew and then rename the UpCharsEx to UpChars, then rs_getuptext should just work.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  9. #9
    Join Date
    Nov 2010
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    If you don't want to macro on the new runescape, just rename the UpChars folder to UpCharsNew and then rename the UpCharsEx to UpChars, then rs_getuptext should just work.
    Done that, but it seems the whole UpChars nor UpCharsEx exist, cause as soon I type UpChars( then it should pop up with a help thingy like

    UpChars(string, boolean thing.

  10. #10
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Failure View Post
    Done that, but it seems the whole UpChars nor UpCharsEx exist, cause as soon I type UpChars( then it should pop up with a help thingy like

    UpChars(string, boolean thing.
    UpChars is NOT a function.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  11. #11
    Join Date
    Nov 2010
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    UpChars is NOT a function.
    I don't know, I'm still learning, I done what you said, and it doesn't seem to work might you could provide me with an example of this?

    Simba Code:
    program New;

    {$i SRL/SRL.scar}



    var x,y:Integer;


    begin
    SetupSRL;

     MMouse(619, 228, 0, 0)
     Wait(50);
     If UpChars('eedle') then
        Begin
         WriteLn('We found the Needle!');
        End;
    end.

  12. #12
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default




    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  13. #13
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Alright thanks guys.

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
  •