Jump to content

Home

need some help


jansetwin

Recommended Posts

Posted

Okay well, i've just been doing some basic coding. I've started a mod project with some friends. It's coming along nicely. Just I need some help with getting the cgame.

 

When i swap my files over from debug to final (or release) I get UI and jampgame but no cjamp, even though at the bottem it says 4 succesful. And also, the c file comes up if i build in debug mode. Why is this? I check the output files, it's all correct but it just don't appear.

 

Also, if there any charge up weapons, It says in the consle. 'Charging' then when you fire, 'Firing chargemode = 2107. how do i stop it?

 

Finally, What is the difference between debug, final and release?

Posted

If you're panda, then i've already helped you with the cgame, i think.

 

The chargeup error appears for me too.

 

I also want to know the difference between the 3 different compile methods.

 

Help, anyone?

Posted

charging is printed cause theres a #ifdef debug around a print statement

 

just go delete it, i had that message printing for ages before it got annoying enough to do anything about it

Posted

I'm not sure about release, but debug is a little slower because it prints out statements talking about what is going inside of the code so you can better trace a bug, final gets rid of these statments, efxs and such and leaves only the code that a player would care about i think.

Posted

I'm not sure about release, but debug is a little slower because it prints out statements talking about what is going inside of the code so you can better trace a bug, final gets rid of these statments, efxs and such and leaves only the code that a player would care about i think.

Posted

Debug, adds extra memory padding and such and debug symbols so the dll files are much larger, and the extra memory padding makes it so the game does not crash as much with mem leaks, and other mem issues.

Posted

Debug, adds extra memory padding and such and debug symbols so the dll files are much larger, and the extra memory padding makes it so the game does not crash as much with mem leaks, and other mem issues.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...