mad mapper
11-18-2004, 08:25 AM
Hello,
i added a PERSISTANT variable.
The Scores are shown in MP in the lower right like that:
"Scores: 15"
I want to show the Variable I added in the lower left, so I edited the hud.menu in the ui Folder:
menuDef
{
name "lefthud"
fullScreen 0 // MENU_FALSE
rect 0 368 112 112 // Size and position of the menu
visible 1 // Visible on open
// Tells current credits of game********************************************** *******
itemDef
{
name credit_line
forecolor 1 1 1 1
rect 20 20 6 12 // (these positions are relative to the initial position of the menu)
// X pos, Y pos, char size, char height
}
[...]
Afterwards I added this code to CG_DrawHud
const char *creditStr = NULL;
creditStr = va("Credits: %i", cg.snap->ps.persistant[PERS_CREDITS]);
focusItem = Menu_FindItemByName(menuHUD, "credit_line");
if (focusItem)
{
UI_DrawScaledProportionalString(
focusItem->window.rect.x,
focusItem->window.rect.y,
creditStr,
UI_RIGHT|UI_DROPSHADOW,
focusItem->window.foreColor,
0.7);
}
It doesn't work. But if I type this:
char *creditStr = "Credits: ";
It works. I really don't know why.
i added a PERSISTANT variable.
The Scores are shown in MP in the lower right like that:
"Scores: 15"
I want to show the Variable I added in the lower left, so I edited the hud.menu in the ui Folder:
menuDef
{
name "lefthud"
fullScreen 0 // MENU_FALSE
rect 0 368 112 112 // Size and position of the menu
visible 1 // Visible on open
// Tells current credits of game********************************************** *******
itemDef
{
name credit_line
forecolor 1 1 1 1
rect 20 20 6 12 // (these positions are relative to the initial position of the menu)
// X pos, Y pos, char size, char height
}
[...]
Afterwards I added this code to CG_DrawHud
const char *creditStr = NULL;
creditStr = va("Credits: %i", cg.snap->ps.persistant[PERS_CREDITS]);
focusItem = Menu_FindItemByName(menuHUD, "credit_line");
if (focusItem)
{
UI_DrawScaledProportionalString(
focusItem->window.rect.x,
focusItem->window.rect.y,
creditStr,
UI_RIGHT|UI_DROPSHADOW,
focusItem->window.foreColor,
0.7);
}
It doesn't work. But if I type this:
char *creditStr = "Credits: ";
It works. I really don't know why.