Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

Rouglee

Member
  • Content Count

    9
  • Joined

  • Last visited

  • Medals

Community Reputation

7 Neutral

About Rouglee

  • Rank
    Private

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. No problem! 🙂 Hope your mission becomes a blast.
  2. you could put the following into AF_KP_vars.sqf errorcounter = 0; then just increment it in the enter statement in AF_KP_fncs.sqf case "enter": { if (code isnotequalto inputText) then { errorcounter = errorcounter + 1; }; if (errorcounter == 3) then { // Add what you want to be executed here "do something"; }; OutputText = InputText; hint format["Keycode is %1", OutputText]; closeDialog 0; InputText = ""; }; Not quite sure if it's what you're asking.
×