06-29-2012, 10:11 PM
I've recently revisited possible solutions to the problem I posted about a while back: [weapon name] is not available errors with no start weapons
Unfortunately, I am now even more confused. I've been attempting to re-compile Xonotic 0.6.0 from source in an attempt to remove the on-screen messages that are displayed when you attempt to switch to a weapon that isn't in your inventory. I've isolated the message to "cl_weaponsystem.qc", specifically this line (820):
Yet when I change or remove this line, the messages persist. I've even tried completely removing the entire cl_weaponsystem.qc file from the source code (and all references to it so compilation won't fail)... and yet the messages remain.
To make things more confusing, there seems to be a variable that one can use to suppress these messages: hud_panel_weapons_complainbubble. But changing this from the default "1" to "0" doesn't seem to do antyhing.
Can anyone help me with this? I've spent around 4 hours on this already, and am just going in circles...
And yes, I know this is a cosmetic issue of no real importance, but the fact that I can't figure it out is driving me nuts...
Unfortunately, I am now even more confused. I've been attempting to re-compile Xonotic 0.6.0 from source in an attempt to remove the on-screen messages that are displayed when you attempt to switch to a weapon that isn't in your inventory. I've isolated the message to "cl_weaponsystem.qc", specifically this line (820):
Code:
sprint(cl, strcat("The ^2", W_Name(wpn), "^7 is ^1NOT AVAILABLE^7 in this map\n") );
Yet when I change or remove this line, the messages persist. I've even tried completely removing the entire cl_weaponsystem.qc file from the source code (and all references to it so compilation won't fail)... and yet the messages remain.
To make things more confusing, there seems to be a variable that one can use to suppress these messages: hud_panel_weapons_complainbubble. But changing this from the default "1" to "0" doesn't seem to do antyhing.
Can anyone help me with this? I've spent around 4 hours on this already, and am just going in circles...
And yes, I know this is a cosmetic issue of no real importance, but the fact that I can't figure it out is driving me nuts...