NPC storeGuy = script.getNpcs().closest("Store");
if(storeGuy != null){
script.log("Trading store guy");
InteractionEvent e = new InteractionEvent(storeGuy, "Trade");
e.setMaximumAttempts(2);
e.execute(); //line 67
https://gyazo.com/8ec12a4cb9a91d57d032238ad0df094f
Seems to happen every time I do event.execute (not alone to this type of event)