Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

hide action text

  • #1, by constantin 9 years ago Zitieren
    is there a possibility to hide action text with lua? at some point in my game i want to hide the name of a character. 
    i searched, but i didnt find out how to do this. 
    thanks in advance :-)
  • #2, by sebastian 9 years ago Zitieren
    is there a possibility to hide action text with lua? at some point in my game i want to hide the name of a character. 
    i searched, but i didnt find out how to do this. 
    thanks in advance :-)
    when your action text is done via the game settings tab:

    execute script action part:


    game.DrawActionText = 0


    GameDrawActionText 
    '0' do not draw action text.
    '1' draw action text at current cursor position.
    '2' draw action text centered in the rectangle defined by GameActionTextRect.


  • #3, by constantin 9 years ago Zitieren
    thank you!