Thread: [Subplugin Submission] [ZP] Custom Level System v3.2 (22 Features)
View Single Post
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 08-11-2015 , 13:05   Re: [ZP] Custom Level System v3.1 (22 Features)
Reply With Quote #178

If you want to disable the sprites, just open the cl_system.cfg file. Then, change below:
Code:
zp_level_icon    1                // Enable level icon
-->
Code:
zp_level_icon    0                // Enable level icon
Next, just open the custom_level.sma file. Then, just remove below code:
Code:
public plugin_precache()
{
    new szFile[35]
    for(new i = 0; i < sizeof(RANKS); i++)
    {
        formatex(szFile, charsmax(szFile), "sprites/zombie_plague/level/%i.spr", i)
        g_iSprite[i] = precache_model(szFile)
    }
}
zmd94 is offline