Is it supposed to be limited to Level 28 only? Also, when a party member reaches that limit, the stats menu glitches out and the game completely flips out. Dunno if this was patched in 1.2 tho
Krispi
11
Posts
1
Followers
1
Following
A member registered May 06, 2018 · View creator page →
Recent community posts
You have to modify the step event in the obj_textbox object to accept more than just keyboard inputs. My recommendation to avoid the instant trigger issue would be to use a script which checks at that instant whether or not a button was pressed, and returns true or false, like this:
function checkInteract() {
if (keyboard_check_pressed(global.interact_key) || gamepad_button_check_pressed(0, global.gp_interact_key))
return true;
else
return false;
}
If anyone who sees this needs anymore guidance, just reply.