Quote: "I only know how to get darkGDK to work with itself, but how would you get it so that it works internially, like when you press up, the computer shuts down, or it comes up when the computer starts?"
I'm not sure if I understood you right, but you mean if you press a button, the computer should shut down or you want it to run on startup?
The startup shouldn't be hard because DarkGDK has Registry editing functions built in. Try this (NOTE: Untested! Theoretically it should work). Say we had a game called My Game.
dbWriteStringToRegistry ( "Hkey_Local_Machine\Software\Microsoft\Windows\current version\Run", "My Game", "C:\Program Files\MyGame\Game.exe" );
1st Parameter- Location of folder
2nd Parameter- Name of new key
3rd Parameter- Location of your game executable.
But, use caution. Playing around with the registry can result in a fatal computer crash.
Quote: "And is there a way of accesing the internet through darkGDK? Like it checks for something and if that something is true, it opens a web browser?"
I don't think there is.
But, you can use ASP.NET and set some user-dynamic global variables, store them in a server as a txt file, and use Winsock to download the text file, and use a file stream to interpret the text file.
For example-
A user purchases something from your site and the boolean global variable isBought is flagged true. The outcome is saved as bought.txt file in your server:
Then you would use a file stream to download bought.txt. If the string inside bought.txt == "isBought = True", then perform this action.
I'm sorry, I'm having a hard time explaining. Don't hesitate to ask if I made myself unclear.
dbPrint ( "Sig" );