-- DESCRIPTION: While the player is within the zone the [PROMPTTEXT$=""] is displayed on screen. g_textinzone = {} function textinzone_properties(e, prompttext) g_textinzone[e]['prompttext'] = prompttext end function textinzone_init(e) g_textinzone[e] = {} g_textinzone[e]['prompttext'] = "" end function textinzone_main(e) if g_Entity[e]['plrinzone']==1 then PerformLogicConnections(e) local nText = g_textinzone[e]['prompttext'] --Prompt(nText) Panel(72,0,100,20) TextCenterOnX(50,53,3,nText) TextCenterOnX(50,57,3,"It can be as great as your knowledge is") TextCenterOnX(50,60,3,"It can be as funny as your imagination is") TextCenterOnX(50,64,3,"Just try and enjoy!") end end