Search found 13 matches

by Spartan025
Sat Jun 16, 2007 3:19 pm
Forum: Programming
Topic: Basic DirectX/Variable/Function
Replies: 4
Views: 1050

Basic DirectX/Variable/Function

Really basic There are 3 parts to this Eplanation 1.Directx 2.DirectX classes/functions 3.Applying DirectX DirectX Direct X is a set of programs and files that are used to make games and graphics. Direct X in programming is also known as and SDK or Self-Development Kit. This contains classes/functio...
by Spartan025
Sun Mar 18, 2007 1:02 pm
Forum: Modding Discussion
Topic: Nooby Question
Replies: 6
Views: 686

HMT:Edits Tags, BSP, Weapons, Projectiles,Textures, Sounds,UI all that good stuff, it can also rebuild maps

SparkEdit:A BSP Viewer that changes the postition of spawns, vehicles weapons and models of the map.

HHT:Same as HMT
by Spartan025
Sun Mar 18, 2007 1:00 pm
Forum: Modding Discussion
Topic: need horn on my hog ??????
Replies: 3
Views: 519

Open HMT 3.5
Load A map(example bloodgulch)
Expand the +bitmap tag
Scroll to the warthog and import/inject new skin(i forget which one)
Save/Exit
by Spartan025
Sun Mar 18, 2007 12:44 pm
Forum: Tutorials
Topic: C++ Loops,Variables,Files,Templates / VB 2005 Image
Replies: 0
Views: 1798

C++ Loops,Variables,Files,Templates / VB 2005 Image

C++ Loops,Variables,Files,Templates / Vb 2005 Image These tuts may not be good but I just want to submit what i know and help beginners start on projects or get some knowledge ----------------------------------------------------------------------------------- C++ Loops This explains 2 simple C++ lo...
by Spartan025
Sun Mar 18, 2007 12:39 pm
Forum: Modding Discussion
Topic: How to work skins
Replies: 4
Views: 570

Ok in steps

1.Open Up HMT 3.5
2.Open up a map with pistol(e.g bloodgulch)
3.Go to the +bitmap tag and expand by clicking the + button
4.Scroll down to pistol and click import or inject image(i forget)
5.then save
by Spartan025
Sun Mar 18, 2007 12:33 pm
Forum: Programming
Topic: Spartan025's - C++ Loops
Replies: 5
Views: 1100

why can't you accept me for who i am! :(
by Spartan025
Sun Mar 18, 2007 12:30 pm
Forum: Programming
Topic: Spartan025's - C++ Program Template
Replies: 0
Views: 382

Spartan025's - C++ Program Template

This is a template for which most simple C++ programs works Here are different kinds of templates i use for exercise or my own apps Simple #include <iostream> using namespace std; int main() { system("PAUSE"); return 0; } This is a simple template of C++ program all the preprocessors or #i...
by Spartan025
Sun Mar 18, 2007 12:19 pm
Forum: Programming
Topic: Spartan025's - C++ Variable
Replies: 2
Views: 713

Spartan025's - C++ Variable

C++ Variables. In C++ there are storages in the computer that holds data. There are many specific types of data. int (variable name) // Integer, negative 2 billion to positive 2 billion double (variable name) // Double-precison floating pt. 15 deciaml places float (variable name) // single float pt....
by Spartan025
Sun Mar 18, 2007 12:22 am
Forum: Programming
Topic: Spartan025's - C++ Files
Replies: 1
Views: 502

Spartan025's - C++ Files

Ok i have not visited or posted in a long time,like anybody cares :( Part I:Ofstream This section deals with manipulating text files in c++.(This is not how to open Halo maps though, thats binary. That is for another section.) first you need to include a C++ preproceesor drive called #include <fstre...
by Spartan025
Wed Oct 18, 2006 5:21 pm
Forum: Programming
Topic: Spartan025's - Open Up An Image in VB 05
Replies: 0
Views: 500

Spartan025's - Open Up An Image in VB 05

Making An Image Reader In Visual Basic 2005 Express Edition This explains how to open up standard images in VB This is only simple and does not have rich features. It only shows how to load an image using the openfiledialog 1.Open VB 05 Express 2.CLick New Project 3.Make sure Windows Application is ...
by Spartan025
Tue Oct 17, 2006 5:30 pm
Forum: Programming
Topic: Spartan025's - C++ Loops
Replies: 5
Views: 1100

what r u takin abiut, i wirote it myself
by Spartan025
Mon Oct 16, 2006 8:40 pm
Forum: Programming
Topic: Spartan025's - C++ Loops
Replies: 5
Views: 1100

Spartan025's - C++ Loops

C++ Loops This explains 2 simple C++ loops , and how to do them right. First, what is a Loop? A Loop is a statement that executes over and over as long as the condition is true. An example would be: // A simple Loop i = 1 // "i" is initialized to 1 while (i <= n) { //While i is less than o...
by Spartan025
Fri Oct 13, 2006 3:47 pm
Forum: Programming
Topic: Programming: Loading Halo2 Maps In VB
Replies: 35
Views: 11491

The Fno doesnt work because it says it needs to be declared
you could try

Code: Select all

Dim Fno
i think it should work