Eroare compilare

Categoria cu cereri de pluginuri si nu numai.

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

Forum rules
Accesează link-ul pentru a putea vedea regulile forumului

Daca doriti sa vi se modifice un plugin, va rugam postati aici .
Post Reply
User avatar
AZzeL
Membru, skill +2
Membru, skill +2
Posts: 981
Joined: 02 Oct 2012, 15:24
Detinator Steam: Da
CS Status: Invat ingerasii sa moara !
Detinator server CS: VALCEA.FIREON.RO
Location: Valcea
Has thanked: 64 times
Been thanked: 27 times
Contact:

21 Sep 2013, 04:04

Salut

Imi puteti compila acest plugin , mie imi da o eroare !
| Afiseaza codul
/*================================================================================
 * Please don't change plugin register information.
================================================================================*/

#include <amxmodx>
#include <fakemeta>
#include <zombieplague>	

#define SUPPORT_BOT_TO_USE     //支援BOT使用.(在最前面加上 // 即取消對BOT的技援)

#define PLUGIN_NAME	"[ZP] Class : Frank"
#define PLUGIN_VERSION	"1.0"
#define PLUGIN_AUTHOR	"tumoxa"

#define TASK_ID_1	param[0]+3344
#define TASK_ID_2	ent+4455
#define ENTITY_ID_2	taskid-4455

// Zombie Atributes
new const zclass_name[] = { "Frank" } //
new const zclass_info[] = { "| R -> Fum" } // Инфо
new const zclass_model[] = { "zp_cso_psix" } // Модель
new const zclass_clawmodel[] = { "v_cso_brpc.mdl" } // РУки
const zclass_health = 4000 // Жизни
const zclass_speed = 250 // Скорость
const Float:zclass_gravity = 1.0 // Граитация
const Float:zclass_knockback = 1.80 // Отдача

// Settings
new const Float:Effect_Human_Delay = 1.5
new const Float:Play_Cough_Sound_Delay = 2.5

// Sounds
new const Smoke_Effect_Sound[] = { "items/airtank1.wav" } //Звук выпускания дыма
new const Humans_Cough_Sound[][] = { "zombie_plague/cough1.wav", "zombie_plague/cough2.wav", "zombie_plague/cough3.wav",
	 "zombie_plague/cough4.wav", "zombie_plague/cough5.wav", "zombie_plague/cough6.wav" }

// Class IDs
new g_zclass_frank

// Cvars
new g_UseSmokeTimes, g_SmokeTimelimit, g_SmokeSkillCooldown
new g_smokeSpr
new maxplayers
new bool:round_end
new g_msgScreenFade, g_msgScreenShake

new UseSmokeTimes[33]
new bool:UseSmokeStarted[33]
new bool:CooldownStarted[33]
new bool:EffectStarted[33], Float:EffectOverTime[33], Float:NextEffectTime[33]
new EffectSoundIndex[33], Float:NextPlaySoundTime[33]

public plugin_init()
{
	register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR)
	
	g_UseSmokeTimes = register_cvar("zp_zclass_frank_times", "12")
	g_SmokeTimelimit = register_cvar("zp_zclass_frank_timelimit", "15.0")
	g_SmokeSkillCooldown = register_cvar("zp_zclass_frank_cooldown", "30.0")
	
	register_forward(FM_Touch, "fw_Touch")
	register_forward(FM_CmdStart, "fw_CmdStart")
	register_forward(FM_PlayerPostThink, "fw_PlayerPostThink", 1)
	
	register_event("ResetHUD","event_NewRound","be")
	register_event("DeathMsg", "event_Death", "a")
	register_event("HLTV", "event_RoundStart", "a", "1=0", "2=0")
	
	maxplayers = get_maxplayers()
	g_msgScreenFade = get_user_msgid("ScreenFade")
	g_msgScreenShake = get_user_msgid("ScreenShake")
}

public plugin_precache()
{
	precache_sound(Smoke_Effect_Sound)
	
	for (new i = 0; i < sizeof Humans_Cough_Sound; i++)
		precache_sound(Humans_Cough_Sound)
	
	g_smokeSpr = precache_model("sprites/black_smoke1.spr")
	
	g_zclass_frank = zp_register_zombie_class(zclass_name, zclass_info, zclass_model, zclass_clawmodel, zclass_health, zclass_speed, zclass_gravity, zclass_knockback)
}

// User Infected forward
public zp_user_infected_post(id, infector)
{
	if (zp_get_user_zombie_class(id) == g_zclass_frank)
	{
		UseSmokeTimes[id] = get_pcvar_num(g_UseSmokeTimes)
		
		client_print(id, print_chat, "Abilitatea nu este gata inca", floatround(get_pcvar_float(g_SmokeTimelimit)), floatround(get_pcvar_float(g_SmokeSkillCooldown)))
	}
}

public zp_user_humanized_post(id)
{
	if (task_exists(id)) remove_task(id)
	
	client_print(id, print_center, "")
	
	UseSmokeStarted[id] = false
	CooldownStarted[id] = false
}

public fw_Touch(pentru, ptd)
{
	if (!pev_valid(pentru))
		return FMRES_IGNORED;
	
	static classname[32]
	pev(pentru, pev_classname, classname, 31)
	
	if (!equal(classname, "FAKE_SMOKE_ENT"))
		return FMRES_IGNORED;
	
	if ((1 <= ptd <= 32) && is_user_alive(ptd) && !zp_get_user_zombie(ptd))
	{
		if (!EffectStarted[ptd])
		{
			EffectSoundIndex[ptd] = random_num(0, sizeof Humans_Cough_Sound -1)
			EffectStarted[ptd] = true
		}
		
		EffectOverTime[ptd] = get_gametime() + 3.0 
	}
	
	return FMRES_IGNORED;
}

public fw_CmdStart(id, uc_handle, seed)
{
	if (!is_user_alive(id) || !zp_get_user_zombie(id))
		return FMRES_IGNORED;
	
	if ((zp_get_user_zombie_class(id) != g_zclass_frank) || zp_get_user_nemesis(id))
		return FMRES_IGNORED;
	
	#if defined SUPPORT_BOT_TO_USE
	if (is_user_bot(id))
	{
		if (CooldownStarted[id])
			return FMRES_IGNORED;
		
		new enemy, body
		get_user_aiming(id, enemy, body)
		
		if ((1 <= enemy <= 32) && is_user_alive(enemy) &&!zp_get_user_zombie(enemy))
		{
			if (fm_entity_range(id, enemy) <= 100.0)
			{
				if (!UseSmokeStarted[id])
					Use_SmokeSkill(id)
			}
		}
		
		return FMRES_IGNORED;
	}
	#endif
	
	static button, oldbutton
	button = get_uc(uc_handle, UC_Buttons)
	oldbutton = pev(id, pev_oldbuttons)
	
	if ((button & IN_RELOAD) && !(oldbutton & IN_RELOAD))
	{
		if (!UseSmokeStarted[id])
			Use_SmokeSkill(id)
	}
	
	return FMRES_HANDLED;
}

public fw_PlayerPostThink(id)
{
	if (!is_user_alive(id) || zp_get_user_zombie(id))
		return FMRES_IGNORED;
	
	if (!EffectStarted[id])
		return FMRES_IGNORED;
	
	new Float:gametime = get_gametime()
	if (gametime >= NextEffectTime[id])
	{
		screen_fade(id, 1.0)
		NextEffectTime[id] = gametime + Effect_Human_Delay
	}
	
	if (gametime >= NextPlaySoundTime[id])
	{
		screen_shake(id, 5, 1, 5)
		engfunc(EngFunc_EmitSound, id, CHAN_VOICE, Humans_Cough_Sound[EffectSoundIndex[id]], VOL_NORM, ATTN_NORM, 0, PITCH_NORM)
		NextPlaySoundTime[id] = gametime + Play_Cough_Sound_Delay
	}
	
	if (gametime >= EffectOverTime[id])
		EffectStarted[id] = false
	
	return FMRES_IGNORED;
}

public Use_SmokeSkill(id)
{
	if (!is_user_alive(id))
		return;
	
	if (!zp_get_user_zombie(id) || (zp_get_user_zombie_class(id) != g_zclass_frank))
		return;
	
	if (zp_get_user_nemesis(id))
		return;
	
	if (get_pcvar_num(g_UseSmokeTimes) && UseSmokeTimes[id] <= 0)
		return;
	
	if (UseSmokeStarted[id])
		return;
	
	if (CooldownStarted[id])
	{
		client_print(id, print_center, "Abilitatea nu este gata inca")
		return;
	}
	
	UseSmokeStarted[id] = true
	
	client_print(id, print_center, "")
	
	// Create smoke entity
	new ent = engfunc(EngFunc_CreateNamedEntity, engfunc(EngFunc_AllocString, "info_target"))
	if (pev_valid(ent))
	{
		new Float:origin[3]
		pev(id, pev_origin, origin)
		
		new flags = pev(id, pev_flags)
		if (!((flags & FL_DUCKING) && (flags & FL_ONGROUND)))
			origin[2] -= 36.0
		
		Create_Smoke_Group(origin)
		
		new iOrigin[3]
		FVecIVec(origin, iOrigin)
		
		new param[6]
		param[0] = ent
		param[1] = iOrigin[0]
		param[2] = iOrigin[1]
		param[3] = iOrigin[2]
		param[4] = floatround(get_pcvar_float(g_SmokeTimelimit) / 0.1)
		param[5] = 10
		
		set_task(0.1, "Do_Smoke_Effect", TASK_ID_1, param, 6)
		
		// Set smoke entity status
		set_pev(ent, pev_classname, "FAKE_SMOKE_ENT")
		set_pev(ent, pev_solid, SOLID_TRIGGER)
		set_pev(ent, pev_movetype, MOVETYPE_NOCLIP)
		set_pev(ent, pev_sequence, 1)
		
		// Set smoke entity size
		new Float:mins[3], Float:maxs[3]
		if (!((flags & FL_DUCKING) && (flags & FL_ONGROUND)))
		{
			mins = Float:{ -130.0, -130.0, -20.0 }
			maxs = Float:{ 130.0, 130.0, 130.0 }
		}
		else
		{
			mins = Float:{ -130.0, -130.0, -56.0 }
			maxs = Float:{ 130.0, 130.0, 130.0 }
		}
		
		engfunc(EngFunc_SetSize, ent, mins, maxs)
		
		// Set smoke entity origin
		set_pev(ent, pev_origin, origin)
		
		engfunc(EngFunc_EmitSound, ent, CHAN_VOICE, Smoke_Effect_Sound, VOL_NORM, ATTN_NORM, 0, PITCH_NORM)
		
		CooldownStarted[id] = true
		set_task(get_pcvar_float(g_SmokeSkillCooldown), "SmokeSkill_Cooldown_Over", id)
		
		if (get_pcvar_num(g_UseSmokeTimes))
		{
			UseSmokeTimes[id]--
			
			if (UseSmokeTimes[id] > 0)
				client_print(id, print_chat, "[ZP] Eliberati fum - R", UseSmokeTimes[id])
			else
				client_print(id, print_chat, "[ZP] Eliberati fum - R")
		}
	}
	
	UseSmokeStarted[id] = false
}

public Do_Smoke_Effect(param[6])
{
	new ent = param[0]
	new iOrigin[3]
	iOrigin[0] = param[1]
	iOrigin[1] = param[2]
	iOrigin[2] = param[3]
	
	if (!pev_valid(ent))
		return;
	
	if (param[4] <= 0 || round_end)
	{
		if (pev_valid(ent))
			set_task(0.8, "Remove_Smoke_Entity", TASK_ID_2)
		
		return;
	}
	
	if (param[5] <= 0)
	{
		new Float:fOrigin[3]
		IVecFVec(iOrigin, fOrigin)
		Create_Smoke_Group(fOrigin)
		
		param[5] = 10
	}
	
	param[5]--
	param[4]--
	
	set_task(0.1, "Do_Smoke_Effect", TASK_ID_1, param, 6)
}

public Create_Smoke_Group(Float:position[3])
{
	new Float:origin[12][3]
	get_spherical_coord(position, 40.0, 0.0, 0.0, origin[0])
	get_spherical_coord(position, 40.0, 90.0, 0.0, origin[1])
	get_spherical_coord(position, 40.0, 180.0, 0.0, origin[2])
	get_spherical_coord(position, 40.0, 270.0, 0.0, origin[3])
	get_spherical_coord(position, 100.0, 0.0, 0.0, origin[4])
	get_spherical_coord(position, 100.0, 45.0, 0.0, origin[5])
	get_spherical_coord(position, 100.0, 90.0, 0.0, origin[6])
	get_spherical_coord(position, 100.0, 135.0, 0.0, origin[7])
	get_spherical_coord(position, 100.0, 180.0, 0.0, origin[8])
	get_spherical_coord(position, 100.0, 225.0, 0.0, origin[9])
	get_spherical_coord(position, 100.0, 270.0, 0.0, origin[10])
	get_spherical_coord(position, 100.0, 315.0, 0.0, origin[11])
	
	for (new i = 0; i < 12; i++)
		create_Smoke(origin, g_smokeSpr, 100, 0)
}

public Remove_Smoke_Entity(taskid)
{
	new ent = ENTITY_ID_2
	
	if (pev_valid(ent))
		engfunc(EngFunc_RemoveEntity, ent)
}

public SmokeSkill_Cooldown_Over(id)
{
	if (CooldownStarted[id] && zp_get_user_zombie(id) && (zp_get_user_zombie_class(id) == g_zclass_frank))
	{
		CooldownStarted[id] = false
		
		if (!get_pcvar_num(g_UseSmokeTimes) || UseSmokeTimes[id] > 0)
			client_print(id, print_center, "Abilitatea nu este gata inca", floatround(get_pcvar_float(g_SmokeSkillCooldown)))
	}
}

public Remove_All_FakeSmokeEnt()
{
	new ent = fm_find_ent_by_class(-1, "FAKE_SMOKE_ENT")
	while(ent)
	{
		engfunc(EngFunc_RemoveEntity, ent)
		ent = fm_find_ent_by_class(ent, "FAKE_SMOKE_ENT")
	}
}

public client_connect(id)
{
	UseSmokeStarted[id] = false
	CooldownStarted[id] = false
}

public client_disconnect(id)
{
	UseSmokeStarted[id] = false
	CooldownStarted[id] = false
}

public event_NewRound(id)
{
	client_print(id, print_center, "")
	
	UseSmokeStarted[id] = false
	CooldownStarted[id] = false
}

public event_Death()
{
	new player = read_data(2)
	if (!(1 <= player <= maxplayers))
		return;
	
	if (task_exists(player)) remove_task(player)
	
	client_print(player, print_center, "")
	
	UseSmokeStarted[player] = false
	CooldownStarted[player] = false
}

public event_RoundStart()
{
	round_end = false
	Remove_All_FakeSmokeEnt()
}

public zp_round_ended(winteam)
{
	round_end = true
}

stock get_spherical_coord(const Float:ent_origin[3], Float:redius, Float:level_angle, Float:vertical_angle, Float:origin[3])
{
	new Float:length
	length  = redius * floatcos(vertical_angle, degrees)
	origin[0] = ent_origin[0] + length * floatcos(level_angle, degrees)
	origin[1] = ent_origin[1] + length * floatsin(level_angle, degrees)
	origin[2] = ent_origin[2] + redius * floatsin(vertical_angle, degrees)
}

stock create_Smoke(const Float:position[3], sprite_index, life, framerate)
{
	// Alphablend sprite, move vertically 30 pps
	message_begin(MSG_BROADCAST, SVC_TEMPENTITY)
	write_byte(TE_SMOKE) // TE_SMOKE (5)
	engfunc(EngFunc_WriteCoord, position[0]) // position.x
	engfunc(EngFunc_WriteCoord, position[1]) // position.y
	engfunc(EngFunc_WriteCoord, position[2]) // position.z
	write_short(sprite_index) // sprite index
	write_byte(life) // scale in 0.1's
	write_byte(framerate) // framerate
	message_end()
}

stock screen_fade(id, Float:time)
{
	// Add a blue tint to their screen
	message_begin(MSG_ONE_UNRELIABLE, g_msgScreenFade, _, id)
	write_short((1<<12)*1) // duration
	write_short(floatround((1<<12)*time)) // hold time
	write_short(0x0000) // fade type
	write_byte(0) // red
	write_byte(0) // green
	write_byte(0) // blue
	write_byte(255) // alpha
	message_end()
}

stock screen_shake(id, amplitude = 4, duration = 2, frequency = 10)
{
	message_begin(MSG_ONE_UNRELIABLE, g_msgScreenShake, _, id)
	write_short((1<<12)*amplitude)
	write_short((1<<12)*duration)
	write_short((1<<12)*frequency)
	message_end()
}

stock fm_find_ent_by_class(index, const classname[])
{
	return engfunc(EngFunc_FindEntityByString, index, "classname", classname) 
}

#if defined SUPPORT_BOT_TO_USE
stock Float:fm_entity_range(ent1, ent2)
{
	new Float:origin1[3], Float:origin2[3];
	pev(ent1, pev_origin, origin1);
	pev(ent2, pev_origin, origin2);
	
	return get_distance_f(origin1, origin2);
}
#endif


Multumesc !
[ EntrySoft Hosting SRL ( Reducere 20% prin codul AZZEL20 ) ]
[ MxHost™ ]
RoyalServer
User avatar
Laurentiu P.
Fost moderator
Fost moderator
Posts: 2549
Joined: 10 Jul 2013, 21:26
Detinator Steam: Da
Reputatie: Fost super moderator
Fond eXtream: 100
Has thanked: 26 times
Been thanked: 62 times
Contact:

21 Sep 2013, 08:49

http://www.girlshare.ro/32860784 Uite aici
PS: modifica numele la plugin
no...
User avatar
AZzeL
Membru, skill +2
Membru, skill +2
Posts: 981
Joined: 02 Oct 2012, 15:24
Detinator Steam: Da
CS Status: Invat ingerasii sa moara !
Detinator server CS: VALCEA.FIREON.RO
Location: Valcea
Has thanked: 64 times
Been thanked: 27 times
Contact:

21 Sep 2013, 13:34

Do[N]e ;3 wrote:http://www.girlshare.ro/32860784 Uite aici
PS: modifica numele la plugin
Imi poti spune cum l-ai compilat ? Nu de alta dar stau cam prost cu increderea ...
[ EntrySoft Hosting SRL ( Reducere 20% prin codul AZZEL20 ) ]
[ MxHost™ ]
Cosmin
Fost moderator
Fost moderator
Posts: 9362
Joined: 06 Jul 2013, 22:08
Detinator Steam: Da
Detinator server CS: Nu
Reputatie: Fost eXtream Mod
Fost Scripter eXtreamCS
Nume anterior: scosmynnnn
Has thanked: 492 times
Been thanked: 547 times

21 Sep 2013, 13:36

trebuia compilat local + daca il compilezi local trebuie sa ai in scripting/include zombieplague.inc
smileye
Fost moderator
Fost moderator
Posts: 4648
Joined: 12 Jun 2012, 15:18
Detinator Steam: Da
Reputatie: Fost moderator
Has thanked: 258 times
Been thanked: 38 times
Contact:

21 Sep 2013, 13:38

AZzeL wrote:
Do[N]e ;3 wrote:http://www.girlshare.ro/32860784 Uite aici
PS: modifica numele la plugin
Imi poti spune cum l-ai compilat ? Nu de alta dar stau cam prost cu increderea ...
Trebuie sa il compilezi pe local si ai nevoie de zombieplague.inc in folderul include.
User avatar
AZzeL
Membru, skill +2
Membru, skill +2
Posts: 981
Joined: 02 Oct 2012, 15:24
Detinator Steam: Da
CS Status: Invat ingerasii sa moara !
Detinator server CS: VALCEA.FIREON.RO
Location: Valcea
Has thanked: 64 times
Been thanked: 27 times
Contact:

21 Sep 2013, 14:28

Am zombieplague.inc

Image

Asta imi da mie !!
[ EntrySoft Hosting SRL ( Reducere 20% prin codul AZZEL20 ) ]
[ MxHost™ ]
User avatar
YONTU
Scripter eXtreamCS
Scripter eXtreamCS
Posts: 2466
Joined: 10 May 2013, 14:25
Detinator Steam: Nu
CS Status: Everyone is looking at ur shoes
Reputatie: Moderator ajutator
Fost scripter eXtreamCS
Location: Gura Humorului
Has thanked: 256 times
Been thanked: 288 times
Contact:

21 Sep 2013, 14:34

Tare clasa, o so fac pentru Biohazard :D !

Se compileaza perfect :D !
Click

Dovada:
Image
„Peste douăzeci de ani vei fi dezamăgit din cauza lucrurilor pe care nu le-ai făcut, nu din cauza celor pe care le-ai făcut.” - Mark Twain
„Asa e si in viata, hotii castiga, prostii care invata pierd.” - Mihai Nemeș


Bio.LeagueCs.Ro - Biohazard v4.4 Xmas Edition
discord: IonutC#5114

Experinta in: Java/Spring boot/Angular/C/C++/C#/Javascript/Python/HTML/CSS/Pawn/SQL
Ai nevoie de ajutorul meu? Ma poti gasi doar la adresa de discord de mai sus.
User avatar
AZzeL
Membru, skill +2
Membru, skill +2
Posts: 981
Joined: 02 Oct 2012, 15:24
Detinator Steam: Da
CS Status: Invat ingerasii sa moara !
Detinator server CS: VALCEA.FIREON.RO
Location: Valcea
Has thanked: 64 times
Been thanked: 27 times
Contact:

21 Sep 2013, 17:26

YONTU wrote:Tare clasa, o so fac pentru Biohazard :D !

Se compileaza perfect :D !
Click

Dovada:
Image
Imi poti da tot folderul include pe care il ai ? Daca e poti sa il lasi aici sau mi-l dai prin PM :D
[ EntrySoft Hosting SRL ( Reducere 20% prin codul AZZEL20 ) ]
[ MxHost™ ]
User avatar
sN1kkeRs.
Membru, skill +3
Membru, skill +3
Posts: 1058
Joined: 19 Sep 2013, 19:43
Detinator Steam: Da
Detinator server CS: Da
SteamID: bzk15
Location: Brăila
Has thanked: 124 times
Been thanked: 37 times

21 Sep 2013, 18:22

smileye wrote:
AZzeL wrote:
Do[N]e ;3 wrote:http://www.girlshare.ro/32860784 Uite aici
PS: modifica numele la plugin
Imi poti spune cum l-ai compilat ? Nu de alta dar stau cam prost cu increderea ...
Trebuie sa il compilezi pe local si ai nevoie de zombieplague.inc in folderul include.
Smyley +1 :|
Post Reply

Return to “Cereri”

  • Information