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

[TF2] TF2Jail (Jailbreak for TF2)


Post New Thread Reply   
 
Thread Tools Display Modes
Epislon
New Member
Join Date: Apr 2016
Old 10-21-2016 , 00:20   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #681

Quote:
Originally Posted by Pitbull3 View Post
Any sort of giving items is broken, like MeeM, run and gun, Sexy sax, and any admin give weapons commands. It instantly crashes the server.

There are no errors being logged for TF2 Jailbreak.
Reinstall sourcemod and tf2items. That should fix it.
Epislon is offline
Pitbull3
AlliedModders Donor
Join Date: Aug 2009
Location: Degree-Gaming.com
Old 10-21-2016 , 00:40   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #682

Did you even look at my SM & Extensions? All the newest versions.
Pitbull3 is offline
Epislon
New Member
Join Date: Apr 2016
Old 10-21-2016 , 04:34   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #683

well reinstalling fixed the issue for me, i had it a week or so ago.
Epislon is offline
Pitbull3
AlliedModders Donor
Join Date: Aug 2009
Location: Degree-Gaming.com
Old 10-24-2016 , 05:13   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #684

Getting these error in TF2Jail log:

Fresh install of everything.

Code:
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2041_viewmodel: Preparing models/weapons/c_models/c_v_ludmila/c_v_ludmila.mdl
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2058_model: cannot find valid model models/custom/weapons/antehgen/urinejar.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2058_viewmodel: cannot find valid model models/custom/weapons/antehgen/urinejar.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2171_model: cannot find valid model models/advancedweaponiser/w_sickle_sniper.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2171_viewmodel: cannot find valid model models/advancedweaponiser/w_sickle_sniper.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2197_model: cannot find valid model models/custom/weapons/rebelscurse/c_wrench_v2.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2197_viewmodel: cannot find valid model models/custom/weapons/rebelscurse/c_wrench_v2.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2228_model: cannot find valid model models/advancedweaponiser/fbomb/c_fbomb.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]2228_viewmodel: cannot find valid model models/advancedweaponiser/fbomb/c_fbomb.mdl, skipping
L 10/24/2016 - 05:12:12: [tf2items_giveweapon.smx] [TF2Items GiveWeapon]5142_viewmodel: cannot find valid model models/custom/weapons/goldslinger/c_engineer_gunslinger.mdl, skipping
Pitbull3 is offline
Pitbull3
AlliedModders Donor
Join Date: Aug 2009
Location: Degree-Gaming.com
Old 10-24-2016 , 08:52   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #685

My crash happens the instant Warden is killed or attacked. Anyone else having these issues?
Pitbull3 is offline
Stropy
Senior Member
Join Date: Feb 2016
Old 11-13-2016 , 14:16   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #686

Hey,
i have a little problem. When some is rebeling, the plugins says after 30 seconds that the rebel status has been removed, but the rebel particle is sometimes not removed. Any ideas how to fix it? Got nothing in logs or error logs.

Last edited by Stropy; 11-14-2016 at 10:03.
Stropy is offline
TitanTF
Senior Member
Join Date: Mar 2016
Location: Singapore
Old 11-15-2016 , 01:23   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #687

Quote:
Originally Posted by Pitbull3 View Post
My crash happens the instant Warden is killed or attacked. Anyone else having these issues?
same here
TitanTF is offline
XaH JoB
Junior Member
Join Date: Sep 2016
Old 11-21-2016 , 10:11   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #688

Quote:
Originally Posted by Stropy View Post
Hey,
i have a little problem. When some is rebeling, the plugins says after 30 seconds that the rebel status has been removed, but the rebel particle is sometimes not removed. Any ideas how to fix it? Got nothing in logs or error logs.
Try to change in code this :
Code:
int CreateParticle(char[] sType, float time, int client, eAttachedParticles attach = NO_ATTACH, float xOffs = 0.0, float yOffs = 0.0, float zOffs = 0.0)
{
	int particle = CreateEntityByName("info_particle_system");

	if (IsValidEntity(particle))
	{
		float pos[3];
		GetEntPropVector(client, Prop_Send, "m_vecOrigin", pos);

		pos[0] += xOffs;
		pos[1] += yOffs;
		pos[2] += zOffs;

		TeleportEntity(particle, pos, NULL_VECTOR, NULL_VECTOR);

		DispatchKeyValue(particle, "effect_name", sType);

		if (attach != NO_ATTACH)
		{
			SetVariantString("!activator");
			AcceptEntityInput(particle, "SetParent", client, particle, 0);

			if (attach == ATTACH_HEAD)
			{
				SetVariantString("head");
				AcceptEntityInput(particle, "SetParentAttachmentMaintainOffset", particle, particle, 0);
			}
		}

		DispatchKeyValue(particle, "targetname", "present");
		DispatchSpawn(particle);

		ActivateEntity(particle);
		AcceptEntityInput(particle, "Start");

		if (time != 0.0)
		{
			CreateTimer(time, DeleteParticle, particle, TIMER_FLAG_NO_MAPCHANGE);
		}

		Handle hPack;
		CreateDataTimer(1.0, CheckClient, hPack, TIMER_REPEAT | TIMER_FLAG_NO_MAPCHANGE);
		WritePackCell(hPack, GetClientUserId(client));
		WritePackCell(hPack, EntIndexToEntRef(particle));
		WritePackString(hPack, sType);
		WritePackFloat(hPack, time);
		WritePackCell(hPack, attach);
		WritePackFloat(hPack, xOffs);
		WritePackFloat(hPack, yOffs);
		WritePackFloat(hPack, zOffs);

		return particle;
	}
	else
	{
		LogError("Could not create info_particle_system");
	}

	return particle;
}

public Action DeleteParticle(Handle timer, any data)
{
	if (IsValidEntity(data))
	{
		AcceptEntityInput(data, "Kill");
	}
}
to this :
Code:
Handle CreateParticle(char[] sType, float time, int client, eAttachedParticles attach = NO_ATTACH, float xOffs = 0.0, float yOffs = 0.0, float zOffs = 0.0)
{
	int particle = CreateEntityByName("info_particle_system");
	
	if (IsValidEdict(particle))
	{
		float pos[3];
		GetEntPropVector(client, Prop_Send, "m_vecOrigin", pos);
		
		pos[0] += xOffs;
		pos[1] += yOffs;
		pos[2] += zOffs;
		
		TeleportEntity(particle, pos, NULL_VECTOR, NULL_VECTOR);
		
		DispatchKeyValue(particle, "effect_name", sType);
		
		if (attach != NO_ATTACH)
		{
			SetVariantString("!activator");
			AcceptEntityInput(particle, "SetParent", client, particle, 0);
			if (attach == ATTACH_HEAD)
			{
				SetVariantString("head");
				AcceptEntityInput(particle, "SetParentAttachmentMaintainOffset", particle, particle, 0);
			}
		}
		
		DispatchKeyValue(particle, "targetname", "present");
		DispatchSpawn(particle);
		
		ActivateEntity(particle);
		AcceptEntityInput(particle, "Start");
		
		if (time != 0.0)
		{
			CreateTimer(time, DeleteParticle, particle, TIMER_FLAG_NO_MAPCHANGE);
		}
		
		Handle sPack;
		CreateDataTimer(1.0, CheckClient, sPack, TIMER_REPEAT | TIMER_FLAG_NO_MAPCHANGE);
		WritePackCell(sPack, GetClientUserId(client));
		WritePackCell(sPack, EntIndexToEntRef(particle));
	}
	
	return null;
}

public Action DeleteParticle(Handle timer, any data)
{
	if (IsValidEdict(data))
	{
		RemoveEdict(data);
	}
}
XaH JoB is offline
Stropy
Senior Member
Join Date: Feb 2016
Old 11-25-2016 , 14:52   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #689

Hey,
yesterday i updated TF2Jail plugin to the newest version and now the server crashes after like 4 minutes. I tried to reinstall whole server a plugin, but it is still doing the same thing. I don't remember the version of the older TF2Jail, but i downloaded it 15.8., could someone please upload here the older version or fix version? Same thing as Pitbull3 and TitanTF.... XaH JoB, thanks for responding, i will try that once this problem is solved.

Last edited by Stropy; 11-25-2016 at 15:06.
Stropy is offline
Stropy
Senior Member
Join Date: Feb 2016
Old 11-26-2016 , 13:39   Re: [TF2] TF2Jail (Jailbreak for TF2)
Reply With Quote #690

Here is the older version which was released before the one with the warden bug
Attached Files
File Type: zip TF2-Jailbreak-3175eb814daea9d59fbc35406abf371b13b9a874.zip (700.4 KB, 131 views)
Stropy is offline
Reply


Thread Tools
Display Modes

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 09:53.


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