Results 1 to 9 of 9

Thread: Font [SSUpChars] not found

  1. #1
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default Font [SSUpChars] not found

    So I am working on my own SS include, and I am look at @DannyRS P07Include at his uptext code:

    Simba Code:
    Function P07_GetUpText: String;
    Var
      WhiteT,BlueT,YellowT,OrangeT,FoundText: String;
    Begin
      WhiteT:=GetTextAtExWrap(10, 9, 80, 21, 0, 5, 1, 14541281, 55, 'SSUpChars');
      BlueT:=GetTextAtExWrap(35, 8, 170, 21, 0, 5, 1, 15132173, 65, 'SSUpChars');
      YellowT:=GetTextAtExWrap(35, 8, 170, 21, 0, 5, 1, 1235160, 40, 'SSUpChars');
      OrangeT:=GetTextAtExWrap(35, 8, 170, 21, 0, 5, 1, 4687583, 53, 'SSUpChars');
      FoundText:=WhiteT + ' ' + BlueT + YellowT + OrangeT;
      FoundText:= ReplaceWrap(FoundText, '.', '',[rfReplaceAll]);
      FoundText:= ReplaceWrap(FoundText, '/', '',[rfReplaceAll]);
      FoundText:= ReplaceWrap(FoundText, '\', '',[rfReplaceAll]);
      FoundText:= ReplaceWrap(FoundText, ',', '',[rfReplaceAll]);
      FoundText:= ReplaceWrap(FoundText, '*', '',[rfReplaceAll]);
      FoundText:= ReplaceWrap(FoundText, '^', '',[rfReplaceAll]);
      FoundText:= ReplaceWrap(FoundText, '"', '',[rfReplaceAll]);
      Result:=FoundText;
    End;

    Simba claims to not find the folder "SSUpChars" When I made a folder called "SSUpChars" In C:Simba/fonts what am I doing wrong? Do I have to have all of the upchars for it to work?

  2. #2
    Join Date
    Sep 2012
    Location
    Here.
    Posts
    2,007
    Mentioned
    88 Post(s)
    Quoted
    1014 Post(s)

    Default

    (Not having touched 07/alternate fonts at all) But when you said you made a folder called "SSUpChars", you mean you made a font with that name, correct?

  3. #3
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

  4. #4
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    What do you mean how do I load it then?All I did was change the folder name

    Quote Originally Posted by nivek1989 View Post
    (Not having touched 07/alternate fonts at all) But when you said you made a folder called "SSUpChars", you mean you made a font with that name, correct?
    Made a folder with that name with the a character inside of it

  5. #5
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  6. #6
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    Did you close out of simba and open it back up after putting the files there?
    ty fixedm but it's writingln "a" lol I forgot how to debug uptext

  7. #7
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by RJJ95 View Post
    ty fixedm but it's writingln "a" lol I forgot how to debug uptext
    Then you might be loading the wrong fonts.

    Forum account issues? Please send me a PM

  8. #8
    Join Date
    Nov 2011
    Location
    England
    Posts
    3,072
    Mentioned
    296 Post(s)
    Quoted
    1094 Post(s)

    Default

    You forgot how to debug a string.....?

  9. #9
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Ollybest View Post
    You forgot how to debug a string.....?
    I did WriteLn(GetUpText);

    Instead of WriteLn(P07_GetUpText);

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
  •