Quote Originally Posted by GHirsch
Please show me some mercy as Im pretty new to using scripts. My problem is I cant get my feet off the ground. The Show_Me button doesnt seem to activate. I go through the protocol hitting F1 and pressing the ?. Even when starting a new game at no time does the Show Me button ever activate. It just stays greyed out. Could someone help me out. Thanks.
The help of the shortcuts pannel is deactivated in RTW 1.5. To launch your script you can make a new trigger in export_descr_advice.
As an example, this is the way I did for my own background script:
Code:
;------------------------------------------ ITW script launcher
Trigger ITW_Campaign_Thread_Trigger
    WhenToTest ScrollOpened

    Condition ScrollOpened help_scroll

    AdviceThread ITW_Campaign_Thread  0
Code:
;------------------------------------------ ITW_Campaign		
AdviceThread ITW_Campaign_Thread		
	GameArea Campaign	

	Item ITW_Campaign_Text_01	
		Uninhibitable
		Verbosity  0 
		Threshold  1  
		Attitude Normal
		Presentation Default
		Title ITW_Campaign_Text_01_Title
     	Script scripts\show_me\espionaje_tecnologico.txt	
		Text ITW_Campaign_Text_01_Text1
You must include also the corresponding title and text in export_advice.txt.

In this way, when you press F1 the shortcuts pannel appears and immediately also the advisor, with the show-me button prepared to be pressed.

Another point I remarked some days ago:
The script won't be launched a second time if you don't exit completely RTW. If you exit only the campaign and you try to start another one, the script won't be launched.

I hope this helps.