Community Projects:WikiAdventure:Games:Test Game:Location03

From GPWiki

Files:GUITutorial_warn.gif The Game Programming Wiki has moved! Files:GUITutorial_warn.gif

The wiki is now hosted by GameDev.NET at wiki.gamedev.net. All gpwiki.org content has been moved to the new server.

However, the GPWiki forums are still active! Come say hello.

This page contains WikiAdventure game content data.
Please familiarise yourself with the content syntax before editing this page.

This page contains WikiAdventure game contents data for testing purposes.


<Location>

Location03.jpg
Enlarge
Location03.jpg

<Items>

<Item>
TestTextTxt.png
TestTextTxt.png
Item ID: ShowText
Description: Show text box
Position: 50, 100
<OnClick> ShowText( "Test text box.[br]Another line of text." ) </OnClick>
</Item>


<Item>
TestTextTxtScript.png
TestTextTxtScript.png
Item ID: ShowScriptedText
Description: Show scripted text box
Position: 50, 140
<OnClick> ShowText( "Test scripted text box.[br]Another script is fired upon clicking the Close-button.[br][br]Go ahead - ty it!", "ShowText( 'Close was clicked!' )" ) </OnClick>
</Item>


<Item>
TestTextMsg.png
TestTextMsg.png
Item ID: ShowMessage
Description: Show message box
Position: 50, 200
<OnClick> ShowMessage( "This is the title", "Test message box.[br]Another line of text." ) </OnClick>
</Item>


<Item>
TestTextMsgScript.png
TestTextMsgScript.png
Item ID: ShowScriptedMessage
Description: Show scripted message box
Position: 50, 240
<OnClick> ShowMessage( "This is the title", "Another script is fired upon clicking the Close-button.[br][br]Go ahead - ty it!", "ShowText( 'Close was clicked!' )" ) </OnClick>
</Item>


<Item>
TestTextQst.png
TestTextQst.png
Item ID: ShowQuestion
Description: Show question box
Position: 50, 300
<OnClick> ShowQuestion( "This is the title", "Test question box.[br]Another line of text." ) </OnClick>
</Item>


<Item>
TestTextQstScript.png
TestTextQstScript.png
Item ID: ShowScriptedQuestion
Description: Show scripted question box
Position: 50, 340
<OnClick> ShowQuestion( "This is the title", "Another script is fired upon clicking the Yes/No-buttons.[br][br]Go ahead - ty it!", "ShowText( 'Yes was selected!' )", "ShowText( 'No was selected!' )" ) </OnClick>
</Item>


<Item>
TestTextPic.png
TestTextPic.png
Item ID: ShowPicture
Description: Show picture box
Position: 50, 400
<OnClick> ShowPicture( "TestPerson.png" ) </OnClick>
</Item>


<Item>
TestTextPicScript.png
TestTextPicScript.png
Item ID: ShowScriptedPicture
Description: Show scripted picture box
Position: 50, 440
<OnClick> ShowPicture( "TestPerson.png", "ShowText( 'Close was clicked!' )" ) </OnClick>
</Item>

</Items>

</Location>


Back to Test Game Page.

Back to WikiAdventure Games.

Back to WikiAdventure Main.