I want to identify the code below, I hired a coder from these forums to code in AppGameKit, but they then made/or used there 'own engine' that used AGK. which I did not ask for, I asked for a program to be made in AppGameKit and to have the source.
The problem is, there are bugs and I cannot release the application, I am having problems in communication and have not received communication from them.
I am leaving this persons name from this post for 'now' as I am hoping the issues with this application can be resolved. If the code snippet below is AGKs language, then I perhaps I can put the project into AppGameKit proper and fix their bugs, if it is not AppGameKit scripting language, then I have no way of getting to the (real) code and they have basically built a wall with the so called (engine) and I have no way of fixing the application for which they was paid to make.
code example below
<UI>
AddTextToArray( 0, text line 1 funny joke,\n\ Next line of joke )
AddTextToArray( 1, text line 2 funny joke,\n\ Next line of joke )
AddTextToArray( 2, text line 3 funny joke,\n\ Next line of joke )
<Screen>; Screen = 0
TransIn = 1
TransOut = 1
TimeOut( 100.0 )
Action = LoadMusic( IntroSound, 1 )
Action = ShowScreen( 1 )
<Element>
Image( Textures/Intro-Title-1.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 1
TransIn = 1
TransOut = 1
TimeOut( 500.0 )
Action = HideScreen( 0 )
Action = ShowScreen( 2 )
<Element>
Image( Textures/Intro-Title-2.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 2
TransIn = 1
TransOut = 1
TimeOut( 500.0 )
Action = HideScreen( 1 )
Action = ShowScreen( 3 )
<Element>
Image( Textures/Intro-Title-3.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 3
TransIn = 1
TransOut = 1
TimeOut( 500.0 )
Action = HideScreen( 2 )
Action = ShowScreen( 4 )
<Element>
Image( Textures/Intro-Title-4.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 4
TransIn = 1
TransOut = 1
TimeOut( 500.0 )
Action = HideScreen( 3 )
Action = ShowScreen( 5 )
<Element>
Image( Textures/Intro-Title-5.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 5
TransIn = 1
TransOut = 1
TimeOut( 500.0 )
Action = HideScreen( 4 )
Action = ShowScreen( 6 )
<Element>
Image( Textures/Intro-Title-6.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 6
TransIn = 1
TransOut = 1
TimeOut( 500.0 )
Action = HideScreen( 5 )
Action = ShowScreen( 7 )
<Element>
Image( Textures/Intro-Title-7.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 7
TransIn = 1
TransOut = 1
TimeOut( 300.0 )
Action = HideScreen( 6 )
Action = ShowScreen( 8 )
<Element>
Image( Textures/Intro-Title-8.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
</Screen>
<Screen>; Screen = 8 (Menu 01)
TransIn = 1
TransOut = 1
Action = StopMusic()
Action = HideScreen( 6 )
Action = HideScreen( 7 )
Action = LoadMusic( MenuLoop )
<Element>
Image( Textures/Menu1.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
<Element>
Image( Textures/!developerbutton.png )
ImageSize( 45.3, -1.0 )
Position( 33.0, 8.6 )
Action = GotoScreen( 9 )
Alpha( 0.0 )
</Element>
<Element>
Image( Textures/!menu1button.png )
ImageSize( 37.5, -1.0 )
Position( 81.99, 88.0 )
ClickSound( Sounds/MenuChange.wav )
Action = ShowScreen( 10 )
Alpha( 0.0 )
</Element>
</Screen>
<Screen>; Screen = 9 (Logo)
TransIn = 1
TransOut = 1
Action = StopMenuMusic()
<Element>
Image( Textures/Avanti-Vita-Logo-Long.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
<Element>
Image( Textures/!backtomenubutton.png )
ImageSize( 42.8, -1.0 )
Position( 50.0, 7.0 )
Action = PlayMenuMusic( MenuLoop )
Action = GotoScreen( 8 )
Alpha( 0.0 )
</Element>
</Screen>
<Screen>; Screen = 10 (Menu 02)
TransIn = 1
TransOut = 1
<Element>
Image( Textures/menu2.jpg )
ImageSize( 100.0, 100.0 )
Position( 50, 50 )
</Element>
<Element>
Image( Textures/!developerbutton.png )
ImageSize( 45.3, -1.0 )
Position( 33.0, 8.6 )
Action = GotoScreen( 9 )
Alpha( 0.0 )
</Element>
<Element>
Image( Textures/!app1.png )
ImageSize( 74.6, -1.0 )
Position( 40.0, 31.0 )
ClickSound( Sounds/Clank.wav )
Action = StopMenuMusic()
Action = GotoScreen( 11 )
Alpha( 0.0 )
</Element>
<Element>
Image( Textures/!app2.png )
ImageSize( 56.8, -1.0 )
Position( 30.0, 57.0 )
ClickSound( Sounds/Clank.wav )
Action = StopMenuMusic()
Action = GotoScreen( 15 )
Alpha( 0.0 )
</Element>
<Element>
Image( Textures/!app3.png )
ImageSize( 54.3, -1.0 )
Position( 29.0, 82.0 )
ClickSound( Sounds/Clank.wav )
Action = StopMenuMusic()
Action = GotoScreen( 19 )
Alpha( 0.0 )
</Element>
<Element>
Image( Textures/!menu1button.png )
ImageSize( 37.5, -1.0 )
Position( 82.0, 88.0 )
ClickSound( Sounds/MenuChange.wav )
Action = HideScreen( 10 )
Action = StopScripts()
Alpha( 0.0 )
</Element>
</Screen>