Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    Shark23's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Kansas
    Posts
    424
    Reputation
    10
    Thanks
    55
    My Mood
    Cool

    Question [Solved]Dark GDK[Help]

    Hey everyone,

    I was wondering if any of you had used the Dark GDK .NET program for creating games. Is it worth buying or better just to learn C++(which I will do regardless)?
    Assembly Programmer

  2. #2
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Wrong section? GDK is used in C++.

  3. #3
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Ill allow it, GDK is worth it, and there is a GDK Vb template which is nice/ Have not used it but I have a copy of GDK.NET for Vb.net


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. #4
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Quote Originally Posted by NextGen1 View Post
    Ill allow it, GDK is worth it, and there is a GDK Vb template which is nice/ Have not used it but I have a copy of GDK.NET for Vb.net
    Really? Can you give me a link?

  5. #5
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    oooooohhhhhhhh I want to make games.


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  6. #6
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Lol. oh no. Once Mnpeep gets his hand on that software, his life is permanently gone..

  7. #7
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Visual Basic .Net GDK Template

    Virus Scan

    Virustotal. MD5: c24c4822997668fb28ee8de2d783039b

    File Attached.

    Quote Originally Posted by Developer
    This is ,like GDK.Net C# template, but now for VisualBASIC.Net users.
    This is an easy to use Clean template for coding your games or application.

    I sincerely recommend that you don't Copy/Paste the following, instead download the whole package. See end of article.

    After you've download it, extract it to somehwere
    Than run visual BASIC 2008 express and loadup the project-solution file , which is in the extracted map.

    You can start you coding right away!
    And to make this a Template in Visual BASIC Express everytime you want to code a VB-Application, do the following:

    1 - Go to ' File '
    2 - Click on 'Export Template'
    3 - Click 'Next'
    4 - Than Click on 'Finish'
    Now everytime whenever you want to code a GDK.Net project you now have 2 GDK.Net Template options to choose from, These are:
    1 - The Standard GDK-Template whith bunch of codes you realy will not use
    2 - This Clean Template, See following listing, which is the main code where you put things together.


    '(removed website)
    '(template Designer = Yerrel)

    Imports DarkGDK
    Imports DarkGDK.IO
    Imports DarkGDK.Core
    Imports DarkGDK.Text
    Imports DarkGDK.Camera
    Imports DarkGDK.Engine
    Imports DarkGDK.Basic2D
    Imports DarkGDK.Basic3D
    Imports System
    Imports System.Windows.Forms
    Imports System.Drawing.Color

    Class GDK_VB_Template

    Public Sub New()
    REM Put all your First run initialization here.
    REM things like variables and so on, things that needs to be
    REM set on the very first run.
    REM Put all your GDK startup requirements here!

    REM Start GDK.Net Engine
    InitializeGDK()
    REM Set displaymode
    Display.SetDisplayMode(Display.ScreenWidth(), Display.ScreenHeight(), Display.ScreenDepth())
    REM Create our application window, where nice things are displayed
    Display.SetWindowSize(640, 480)
    REM Set BackgroundColor
    Camera.DefaultCamer*****lorBackdrop(DarkBlue) : Camera.DefaultCamera.BackdropOn()
    REM Set Title for our application Window
    Display.WindowTitle = "GDK.Net VB Template (c).:Binary-Coder.Com"
    REM set font
    Text.SetFont("verdana")
    REM Hide mouse
    DarkGDK.IO.Mouse.Hide()
    REM Set Sync rate
    Core.SyncOn() : Core.SyncRate(66)
    End Sub

    End Class

    Module Module1

    Sub Main()
    Dim g_State As New GDK_VB_Template()
    MessageBox.Show("(c).:Binary-Coder.Com", "GDK.Net VB Template")

    REM Game Main loop
    While LoopGDK()
    REM From here on you place your codeflow, call subs or whatever.
    Text.ShowText(10, 10, "Hello world")
    Sync()
    End While

    End Sub

    End Module

    Don't forget you will need Dark GDK installed, and it isn't free

    Last edited by NextGen1; 04-11-2010 at 08:45 AM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  8. The Following 2 Users Say Thank You to NextGen1 For This Useful Post:

    chrisredfild (11-21-2012),Zoom (04-11-2010)

  9. #8
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by NextGen1 View Post
    Visual Basic .Net GDK Template

    Virus Scan

    Virustotal. MD5: c24c4822997668fb28ee8de2d783039b

    File Attached.




    Don't forget you will need Dark GDK installed, and it isn't free



    Thanks but aww.. I want it
    -Rest in peace leechers-

    Your PM box is 100% full.

  10. #9
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    I may Have a copy, Ill check some of my externals and see if it's there.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  11. The Following User Says Thank You to NextGen1 For This Useful Post:

    Zoom (04-11-2010)

  12. #10
    Shark23's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Kansas
    Posts
    424
    Reputation
    10
    Thanks
    55
    My Mood
    Cool
    Yeah, I was wondering whether it was worth it to buy the .Net version.
    Assembly Programmer

  13. #11
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    I still say yes.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  14. The Following User Says Thank You to NextGen1 For This Useful Post:

    Shark23 (04-11-2010)

  15. #12
    Shark23's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Kansas
    Posts
    424
    Reputation
    10
    Thanks
    55
    My Mood
    Cool
    Alright, thanks. I'll have to get some money then.
    Assembly Programmer

  16. The Following User Says Thank You to Shark23 For This Useful Post:

    NextGen1 (04-11-2010)

  17. #13
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    aww not free?


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  18. #14
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    The Template is free (which is what will allow you to use DarkGDK.net inside of Visual basic.net), DarkGDK,net isn't free however , But I have 4 Redundant Backups for a few years, For some reason, I remember Buying it around the time I purchased DarkBasic, So I will check my externals sometime tonight (the search will take forever they are each 500GB each) But if I find it , I will share it.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  19. The Following 2 Users Say Thank You to NextGen1 For This Useful Post:

    ilikewaterha! (04-13-2010),Zoom (04-12-2010)

  20. #15
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    why new font?


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



Page 1 of 2 12 LastLast

Similar Threads

  1. [SOLVED] Custom Camo Help
    By soccerguy in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 06-21-2010, 06:09 PM
  2. [SOLVED]OK PLZ HELP ME
    By bigdavies321 in forum Combat Arms Help
    Replies: 10
    Last Post: 06-16-2010, 06:44 AM
  3. [Solved]MSG BOX help
    By zmansquared in forum Visual Basic Programming
    Replies: 5
    Last Post: 03-02-2010, 08:52 PM
  4. [Solved]Random number help
    By poneboy00 in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-27-2010, 07:06 AM
  5. [Solved]Custom Form, Help
    By Zoom in forum Visual Basic Programming
    Replies: 9
    Last Post: 02-24-2010, 03:41 PM