Game Development Community

Section 4c of the EULA

by Smaug · in Torque Game Builder · 04/09/2005 (3:22 pm) · 5 replies

This section of the EULA reads as follows:

Quote:Licensee agrees to include in the "About" box or in the credits screen: (i) a link to www.garagegames.com, and (ii) the wording "This game powered by Torque 2D."

Two questions.

i: To comply with subsection (i), do we need to spawn a web browser when the user clicks or otherwise impliment actual linking functionality? This is not a trivial task, especially over multiple platforms. Inless, of course, T2D has some function hidden within it to do so.

ii: Could the wording in question be modified to be a grammatically correct sentense, please? ;) Like "This game is powered by Torque 2D."

#1
04/09/2005 (3:27 pm)
I. Check the gui code for the feedback menu item.
mainScreenMenu.scriptCommand["Feedback", 2] = "gotoWebpage(\"http://www.garagegames.com/mg/forums/result.area.php?qa=41\");";

ii. Either that or simply "Powered by Torque 2D"

EDIT: Added code block.
#2
04/10/2005 (4:41 am)
Side note: How is the user supposed to "activate" that link, if the game is controlled by keyboard only? (I.e.: has no visible mouse cursor).
#3
04/10/2005 (10:35 pm)
Re: 4(c)(i):
It sounds like "link" was the wrong word and you only need to have the text "www.garagegames.com" in your credits or on your "about" window.

But this definitely needs to be clarified as I don't really want to have any web links in my games.
#4
04/12/2005 (10:36 am)
You can say "this game is powered by Torque 2D" or "Powered by Torque 2D", if you want. Just getting the point across there. Likewise for a link... an actual weblink is preferred (and it's very easy to spawn a browser from T2D, it's one script or C++ function), but if you just have the "www.garagegames.com" text in there, that's okay.
#5
04/12/2005 (10:41 am)
@Smaug: I'm glad you asked this question (and your examination of the EULA is much appreciated to find things like this that I missed :)

@Josh: Thanks for the clarification