![]() |
|
Mapping Mapping sizes Limits Entities Bugs & Work-a-rounds Notes Scripting reference Mapping - Tutorials Brushwork from blueprint Tools Brush generator Vehicle generator MD3 Tag The Dummy Modding Project: Bug Fix Project: Crockett Other stuff Forum Server Info Colors Voice Chats Scripts Links |
Project: Bug FixThe objectiveThe goal of this project is to provide modders in the ET community with a SDK code base that contains fixes for various bugs which are present in the stock etmain game (version 2.60).26th september 2006: Sadly bugfix 088 had a bug :-( There were 3 lines that should have been deleted for the fix to work correctly. Show index Previous bug: Command completion client side wasn't up-to-date Next bug: XP points are sometimes displayed with many decimals Bugfix 012 - stoprecord was missing from COMMANDS listProblem:stoprecord was missing from COMMANDS list.Solution:Added it to the command list in g_cmds_extNotes:The bug is still present in version 2.602.56 & 2.60 Code
g_cmds_ext.c @ 58
{ "statsall", qtrue, qfalse, G_statsall_cmd, ":^7 Shows weapon accuracy stats for all players" },
{ "statsdump", qtrue, qtrue, NULL, ":^7 Shows player stats + match info saved locally to a file" },
// CHRUKER: b012 - Was missing
{ "stoprecord", qtrue, qtrue, NULL, ":^7 Stops a demo recording currently in progress" },
{ "team", qtrue, qtrue, Cmd_Team_f, " :^7 Joins a team (b = allies, r = axis, s = spectator)" },
// { "setclass", qtrue, qtrue, Cmd_SetClass_f, " Show index Previous bug: Command completion client side wasn't up-to-date Next bug: XP points are sometimes displayed with many decimals Color codingSample = New codeSample = Changed code (the new version is what is displayed) Sample = Deleted code |
©2007 Chruker |