Knowledgebase - Higher Languages

From GameStudio Wiki

Jump to: navigation, search

This page contains articles on code, complete code examples, bits of knowledge, or links to tutorials that will aid you in your GameStudio programming.


If you cannot find what you need here, please start by reading these Important rules on getting help before posting questions on our User Forum or emailing. It will really save you time.


Visit the Visual Studio 2005/2008 Setup page, to set up Visual Studio 2005/2008 for XP/Vista.

Contents


Creating an Entity

 ENTITY* Ent = ent_create("",Pos,NULL):
 Ent->event = (void*)YourFunc;
 Ent->emask |= ENABLE_FRAME;

MMO Style Player/Camera Controls (WIP)

MMO Style Player/Camera Controls

Currently work in progress.

Custom GUI Class (WIP)

NewGoo Custom GUI Class Example by Neurosys.

NewGoo Custom GUI Class

Currently work in progress.

Custom Client And Server Socket Class (WIP)

MySocket.h Custom C++ Client And Server Socket Class Example by Neurosys.

Custom Client And Server Socket Class

Currently work in progress.

Writing a basic DLL in C++

Writing a basic DLL

This article is a step-by-step tutorial of how to write a basic DLL in C++, that you can use in Lite-C or C-script. This article uses Visual Studio 2008.

Personal tools