Raised This Month: $32 Target: $400
 8% 

BaseBuilder 6.5 Cs 1.6 CLASSES HELP


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
tson_
Senior Member
Join Date: Sep 2011
Old 03-20-2012 , 08:44   BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #1

Hi all, I want to change the zombie classes but if I change the .sma cant complie it...
And if I want to translate zombie class name again cant complie it.
Someone can do for me please or tell me in detail...
I think need .inc file because I did read and tried complie with win32 complier gui but I got error message.
Code:
/*================================================================================
	
	-----------------------------------
	-*- [BB] Default Zombie Classes -*-
	-----------------------------------
	
	~~~~~~~~~~~~~~~
	- Description -
	~~~~~~~~~~~~~~~
	
	This plugin adds the default zombie classes from Zombie Plague
	into Base Builder. All credit belongs to MeRcyLeZZ.
	
	All classes have been balanced, but feel free to edit them if
	you are not satisfied.
	
================================================================================*/

#include <amxmodx>
#include <basebuilder>
#include <hamsandwich>
#include <fun>
#include <cstrike>

/*================================================================================
 [Plugin Customization]
=================================================================================*/

// Classic Zombie Attributes
new const zclass1_name[] = { "Klasszikus Zombi" }
new const zclass1_info[] = { "=Elosztott=" }
new const zclass1_model[] = { "rbs_classic" }
new const zclass1_clawmodel[] = { "rbs_classic_hand" }
const zclass1_health = 3000
const zclass1_speed = 260
const Float:zclass1_gravity = 1.0
const zclass1_adminflags = ADMIN_ALL

// Fast Zombie Attributes
new const zclass2_name[] = { "Gyors Zombi" }
new const zclass2_info[] = { "HP-- Speed++" }
new const zclass2_model[] = { "rbs_fast" }
new const zclass2_clawmodel[] = { "rbs_fast_hand" }
const zclass2_health = 2000
const zclass2_speed = 325
const Float:zclass2_gravity = 1.0
const zclass2_adminflags = ADMIN_ALL

// Jumper Zombie Attributes
new const zclass3_name[] = { "Magasugro Zombi" }
new const zclass3_info[] = { "HP- Jump+" }
new const zclass3_model[] = { "rbs_jumper" }
new const zclass3_clawmodel[] = { "rbs_jumper_hand" }
const zclass3_health = 2500
const zclass3_speed = 285
const Float:zclass3_gravity = 0.5
const zclass3_adminflags = ADMIN_ALL

// Tanker Zombie Attributes
new const zclass4_name[] = { "Tanker Zombie" }
new const zclass4_info[] = { "HP++ Speed-" }
new const zclass4_model[] = { "rbs_tanker" }
new const zclass4_clawmodel[] = { "rbs_tanker_hand" }
const zclass4_health = 4500
const zclass4_speed = 210
const Float:zclass4_gravity = 1.0
const zclass4_adminflags = ADMIN_ALL
#define TANK_ARMOR 200

/*============================================================================*/

new g_zclass_tanker

// Zombie Classes MUST be registered on plugin_precache
public plugin_precache()
{
	register_plugin("[BB] Default Zombie Classes", "6.5", "Tirant")
	
	// 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)
}

#if defined TANK_ARMOR
public plugin_init()
{
	RegisterHam(Ham_Spawn, "player", "ham_PlayerSpawn_Post", 1)
}

public ham_PlayerSpawn_Post(id)
{
	if (!is_user_alive(id))
		return ;
		
	if (bb_is_user_zombie(id) && bb_get_user_zombie_class(id) == g_zclass_tanker)
	{
		give_item(id, "item_assaultsuit");
		cs_set_user_armor(id, TANK_ARMOR, CS_ARMOR_VESTHELM);
	}
}
#endif
tson_ is offline
tson_
Senior Member
Join Date: Sep 2011
Old 03-20-2012 , 08:46   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #2

here .inc file
sorry double post...
Attached Files
File Type: inc basebuilder.inc (9.4 KB, 1051 views)
tson_ is offline
thebest24
Member
Join Date: Sep 2018
Location: Georgia
Old 09-27-2018 , 14:51   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #3

if you made small fail in sma you cant compail it.
thebest24 is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 09-27-2018 , 15:07   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #4

Quote:
Originally Posted by thebest24 View Post
if you made small fail in sma you cant compail it.
What!?!?
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
Nutu_
AlliedModders Donor
Join Date: Mar 2016
Location: Germany
Old 09-28-2018 , 04:13   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #5

i dont understand what exactly you want, just to change classes names and info or models or add more zombies?
i can help you, if you give me all details
__________________
a simple act of caring creates an endless ripple.
Nutu_ is offline
Old 08-03-2020, 06:44
Boban1
This message has been deleted by Boban1. Reason: i figured out what i wanted and dont need help
Boban1
Junior Member
Join Date: Aug 2020
Location: Serbia
Old 08-03-2020 , 13:22   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #6

I tried adding some classes and i saw there are only 4 default classes in-game. What should be done to make it work?
Boban1 is offline
Cirovic
Senior Member
Join Date: Sep 2019
Old 08-03-2020 , 13:29   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #7

try some new mod.. this is 9 YEARS OLD
Cirovic is offline
Cirovic
Senior Member
Join Date: Sep 2019
Old 08-03-2020 , 13:30   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #8

i dont say its not working because of mod, i just say that there is A LOT better bb mods.. that have SO MUCH more stuff than this.. search it
Cirovic is offline
Boban1
Junior Member
Join Date: Aug 2020
Location: Serbia
Old 08-04-2020 , 12:46   Re: BaseBuilder 6.5 Cs 1.6 CLASSES HELP
Reply With Quote #9

Yes, but i only want this classic bb mod. It works best for me. Is there any help with these classes?
Boban1 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 19:33.


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