ItsMods

Full Version: why uninitialised variable 'cardicon_expert_fal'
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Code:
icon()
{
precacheShader( "cardicon_expert_fal" );
streakIcon = createIcon( cardicon_expert_fal, 32, 32 );
streakIcon setPoint( "RIGHT", "BOTTOMRIGHT", 0, -35 );
streakIcon.hideWhenInMenu = true;
}
this is the code
Code:
icon()
{
precacheShader( "cardicon_expert_fal" );
streakIcon = createIcon( "cardicon_expert_fal", 32, 32 );
streakIcon setPoint( "RIGHT", "BOTTOMRIGHT", 0, -35 );
streakIcon.hideWhenInMenu = true;
}
u forgot quotes