AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Base Builder 6.5 - How To Add Extra Zombie models (https://forums.alliedmods.net/showthread.php?t=185027)

CHALLENGER 05-12-2012 04:42

Base Builder 6.5 - How To Add Extra Zombie models
 
Hello all friends.. I am new here & i want to add new zombie models into base builder 6.5

As i am new i really don't know where to post this thread but as i try to edit file "bb_classes65.sma" file from scripting folder i am posting this thread into this section.

I added few .mdl models into models / player folder with "bb_fat.mdl" & add same extra class in "bb_classes65.sma" file like this....

Code:

// Fat Zombie Attributes
new const zclass5_name[] = { "Fat Zombie" }
new const zclass5_info[] = { "Jump++ Speed+ Hp-" }
new const zclass5_model[] = { "bb_fat" }
new const zclass5_clawmodel[] = { "v_bloodyhands" }
const zclass5_health = 6000
const zclass5_speed = 180
const Float:zclass5_gravity = 1.0
const zclass4_adminflags = ADMIN_ALL

& i added this in next line with zclasss5

// Register all classes
    bb_register_zombie_class(zclass1_name, zclass1_info, zclass1_model, zclass1_clawmodel, zclass1_health, zclass1_speed, zclass1_gravity, 0.0, zclass1_adminflags)
    bb_register_zombie_class(zclass2_name, zclass2_info, zclass2_model, zclass2_clawmodel, zclass2_health, zclass2_speed, zclass2_gravity, 0.0, zclass2_adminflags)
    bb_register_zombie_class(zclass3_name, zclass3_info, zclass3_model, zclass3_clawmodel, zclass3_health, zclass3_speed, zclass3_gravity, 0.0, zclass3_adminflags)
    g_zclass_tanker = bb_register_zombie_class(zclass4_name, zclass4_info, zclass4_model, zclass4_clawmodel, zclass4_health, zclass4_speed, zclass4_gravity, 0.0, zclass4_adminflags)
    bb_register_zombie_class(zclass5_name, zclass5_info, zclass5_model, zclass5_clawmodel, zclass5_health, zclass5_speed, zclass5_gravity, 0.0, zclass5_adminflags)
}

but still no zombie i found in base builder with that name so please some one give me all neccery files to add extra zombies or please explain me in simple language. I don't know script languages so please help me.

Thanks in advance.

J3FF 06-16-2012 06:15

Re: Base Builder 6.5 - How To Add Extra Zombie models
 
Code:

const zclass4_adminflags = ADMIN_ALL
you must put zclass5 , to all , you missed one

The PaRaDoX 07-19-2015 04:59

Re: Base Builder 6.5 - How To Add Extra Zombie models
 
You should drag your bbclasses65.sma file in the compiler.exe and scroll down for compiled file


All times are GMT -4. The time now is 00:30.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.