The I Of The Dragon

Informations

Creator Message
Lakorta Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 6012
Wine: 1.7.4-vertex-blending-1.7.4

Feedbacks

Description

In 'The I Of The Dragon' you take the role of one out of three dragons to defeat evil monsters, destroy their breeding grounds and safe humanity. You can change between first and third person perspective.

Source code

#!/bin/bash
# Date : (2015-02-15)
# Distribution used to test : Ubuntu 14.04 LTS 64-bit
# Author : Lakorta
# Licence : GPLv3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

PREFIX="TheIOfTheDragon"
WINEVERSION="1.7.4-vertex-blending-1.7.4"
TITLE="The I Of The Dragon"
EDITOR="Zuxxez"
GAME_URL="http://www.i-dragon.com/index_eng.htm"
 
# Initialization
POL_SetupWindow_Init
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"

# Shortcut
POL_Shortcut "TheIOfTheDragon.exe" "$TITLE"

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Lakorta Sunday 15 February 2015 at 17:12
Lakorta Anonymous

Information

This update has been approved by the team.

Message

Sorry, it seems like I totally misunderstood how posting install scripts works blush

Here is the whole install script.

 

PS: You can also use the Demo from http://www.i-dragon.com to test this script. Also some of the background graphic in the main menu is missing, but that influence the playability of the game.

Differences

@@ -0,0 +1,37 @@
+#!/bin/bash
+# Date : (2015-02-15)
+# Distribution used to test : Ubuntu 14.04 LTS 64-bit
+# Author : Lakorta
+# Licence : GPLv3
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+PREFIX="TheIOfTheDragon"
+WINEVERSION="1.7.4-vertex-blending-1.7.4"
+TITLE="The I Of The Dragon"
+EDITOR="Zuxxez"
+GAME_URL="http://www.i-dragon.com/index_eng.htm"
+ 
+# Initialization
+POL_SetupWindow_Init
+POL_Debug_Init
+
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+# Create Prefix
+POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+# Installation
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$APP_ANSWER"
+POL_Wine_WaitExit "$TITLE"
+
+# Shortcut
+POL_Shortcut "TheIOfTheDragon.exe" "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2015-02-15)
# Distribution used to test : Ubuntu 14.04 LTS 64-bit
# Author : Lakorta
# Licence : GPLv3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

PREFIX="TheIOfTheDragon"
WINEVERSION="1.7.4-vertex-blending-1.7.4"
TITLE="The I Of The Dragon"
EDITOR="Zuxxez"
GAME_URL="http://www.i-dragon.com/index_eng.htm"
 
# Initialization
POL_SetupWindow_Init
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"

# Shortcut
POL_Shortcut "TheIOfTheDragon.exe" "$TITLE"

POL_SetupWindow_Close
exit 0

Replies

Sunday 15 February 2015 at 17:22
You might want to change the license in the header (the header is describing the license for the script itself, not the game. GPLv3 is what most use.). Other than that, it looks good. Change the license and we can approve it.
Anonymous
Wednesday 4 March 2015 at 22:22
I updated the script in this post btw., the license is now GPLv3 instead of Retail.
Wednesday 4 March 2015 at 23:31
Ok. No problem. In the future though, when you want to add more to it, just use the contribute button again, and add your changes and a message (that way it is easier to track changes/commits to the script).
Wednesday 4 March 2015 at 23:34
It should be good to go now. :)

Edited by Lakorta

Lakorta Sunday 15 February 2015 at 16:40
Lakorta Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -0,0 +1 @@
+WINEVERSION="1.7.4-vertex-blending-1.7.4"
\ No newline at end of file

New source code

WINEVERSION="1.7.4-vertex-blending-1.7.4"

Replies