Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Ronia Game Engine

  • Awesome

    Votes: 1 25.0%
  • Love

    Votes: 1 25.0%
  • Like

    Votes: 0 0.0%
  • Neutral

    Votes: 1 25.0%
  • Dis-like

    Votes: 3 75.0%
  • N/A

    Votes: 0 0.0%

  • Total voters
    4
RoniaLogo.png

===================================================================

Ronia G.E. is a new game engine that will create 2d games.
Ronia has many features.
News:Ronia Will Use DigitalDisc(.ddisc)Technology
News:Fourm Added!!!
Features
Key:
Not Done
Working On...
Done
======================================
Unlimited Everything(Besides Layers(Has 4 (3 tile,1 event)))
Updater
Login /Sharing System
Shop
Web browser
Scripting (May Have Different Languages)
Subcategory:Scripting
-Syntax Highlighting
Music Player
Compact Design
Amazing GUI
Beginner Design
Tutorials
Addons
Resource Importer
Screen Shot(s)
eddo.png
ssgexed.png
Download
I know what your thinking,(DOWNLOAD!!!) but we don't have a download yet.
Site
Visit us at:http://www.lc.webuda.com/
Forum:http://s7.zetaboards.com/LCFourm/index/
Thanks For Viewing This Article!
Support Bar:
I%20support%20Ronia.png
 
if your doing this in VB.net, as i can see (main.VB)

then i can give you the project i started, it has most features that you'll need. you'll just have to add the graphics ect.
 
That sounds good LegacyX. :smile:
Right now I'm trying to implement the Updater,So then you can download Ronia,
and it auto updates.But it's not working. :cry:
 
If you need help i will gladly help, i've been working in VB.net for over 4 years
and im also studing it in collage too. So if you need another programmer, just ask an i will help.
 

Tdata

Sponsor

While I never was able to get it to check more than 4 files for updates, I can give you my AutoUpdater if you need it...
 

Tdata

Sponsor

http://bb.vengeance-rpg.com/upload/AutoUpdate.zip
//Place Update.txt on your webserver in the folder where you place the updated files
//EX: Unnamed Chaos.exe;=0.0.0.19 '1/22/2010
// <File Path>;<MinimumVersion> [' comments ]
// <File Path>;=<ExactVersion> [' comments ]
// <File Path>; [' comments ]
// <File Path>;? [' comments ]
// <File Path>;delete [' comments ]
// ...
// Blank lines and comments are ignored
// First parameter - file path (eg. Dir\file.dll)
// Second parameter:
// If the version is specified, the file is updated if:
// - it doesn't exist or
// - the actual version number is smaller than the update version number
// If the version is specified precedeed by a "=", the file is updated if:
// - it doesn't exist or
// - the actual version doesn't match the update version
// If it's an interrogation mark "?" the file is updated only if it doesn't exist
// If the second parameter is not specified, the file is updated only if it doesn't exist (just like "?")
// If it's "delete" the system tries to delete the file
// "'" (chr(39)) start a line (or part line) comment (like VB)

// Method return values
// - True - the update was done with no errors
// - False - the update didn't complete successfully: either there is no update to be done
// or there was an error during the update

// NB - "Version" refers to the AssemblyFileVersion as configured in file AssemblyInfo.cs
Code:
 

void Update(){

//Change to reflect your RemotePath

 

            string RemotePath = "";

            

            MessageBox.Show("Checking if update is needed...");

            if (AutoUpdate.UpdateFiles(RemotePath, false))

            {

                MessageBox.Show("Update is needed.");

                if (AutoUpdate.UpdateFiles(RemotePath, true))

                {

                    MessageBox.Show("Auto Update succedeed!");

                    Dispose();

                    Process.Start(Application.ExecutablePath);

                    Application.Exit();

                }

            }

            else

            {

                MessageBox.Show("No update is available.");

                AutoUpdate.CleanUp();

                Dispose();

            }

}
If you want I can rewrite the Use part in VB...
 

Tdata

Sponsor

Code:
 

Private Sub Update()

        Dim RemotePath As String = ""

        MessageBox.Show("Checking if update is needed...")

        If AutoUpdate.UpdateFiles(RemotePath, False) Then

            MessageBox.Show("Update is needed.")

            If AutoUpdate.UpdateFiles(RemotePath, True) Then

                MessageBox.Show("Auto Update succedeed!")

                Process.Start(Application.ExecutablePath)

                Application.Exit

            End If

        Else

            MessageBox.Show("No update is available.")

            AutoUpdate.CleanUp

        End If

    End Sub

 

 

I think that is correct. Been awhile since I tried to convert between the two...
 
Right its nothing big Lionel, and know allot of people can do better (im not a graphics person, but here's just what i came up with for a temporary logo

Ronia.png
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top