exolent is that plugin made for no small and large blocks?
if so:
Quote:
|
i wonder how to disable SOME large and small models step by step so players dont have to load like 80 models.
|
i wanted to disable the useless small and large blocks like stealth. not all small/large models, i want some of them to be on my server but for now player needs to download ALL models im not using too.
like this:
PHP Code:
{
BM_PLATFORM,
BM_BHOP,
BM_DAMAGE,
BM_HEALER,
BM_NOFALLDAMAGE,
BM_ICE,
BM_TRAMPOLINE,
BM_SPEEDBOOST,
BM_INVINCIBILITY,
BM_STEALTH,
BM_DEATH,
BM_NUKE,
BM_CAMOUFLAGE,
BM_LOWGRAVITY,
BM_FIRE,
BM_SLAP,
BM_RANDOM,
BM_HONEY,
BM_BARRIER_CT,
BM_BARRIER_T,
BM_BOOTSOFSPEED,
BM_GLASS,
BM_BHOP_NOSLOW,
BM_AUTO_BHOP
}
{
BM_PLATFORM_small,
BM_BHOP_small,
BM_DAMAGE_small,
BM_HEALER_small,
BM_NOFALLDAMAGE_small,
BM_ICE_small,
BM_TRAMPOLINE_small,
BM_SPEEDBOOST_small,
BM_INVINCIBILITY_small,
BM_STEALTH_small,
BM_DEATH_small,
BM_NUKE_small,
BM_CAMOUFLAGE_small,
BM_LOWGRAVITY_small,
BM_FIRE_small,
BM_SLAP_small,
BM_RANDOM_small,
BM_HONEY_small,
BM_BARRIER_CT_small,
BM_BARRIER_T_small,
BM_BOOTSOFSPEED_small,
BM_GLASS_small,
BM_BHOP_NOSLOW_small,
BM_AUTO_BHOP_small
}
{
BM_PLATFORM_big,
BM_BHOP_big,
BM_DAMAGE_big,
BM_HEALER_big,
BM_NOFALLDAMAGE_big,
BM_ICE_big,
BM_TRAMPOLINE_big,
BM_SPEEDBOOST_big,
BM_INVINCIBILITY_big,
BM_STEALTH_big,
BM_DEATH_big,
BM_NUKE_big,
BM_CAMOUFLAGE_big,
BM_LOWGRAVITY_big,
BM_FIRE_big,
BM_SLAP_big,
BM_RANDOM_big,
BM_HONEY_big,
BM_BARRIER_CT_big,
BM_BARRIER_T_big,
BM_BOOTSOFSPEED_big,
BM_GLASS_big,
BM_BHOP_NOSLOW_big,
BM_AUTO_BHOP_big
}
and if i dont want the server to load as example the small ct barrier ill do like this:
PHP Code:
//BM_BARRIER_CT_SMALL
if i have:
PHP Code:
//BM_SPEEDBOOST_BIG
it will also disable so the server wont download the sprite for the big speedboost block either
__________________