Cerere bhop

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 .
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

06 Jan 2021, 10:35

Plugin Cerut: BHOP
Descriere (adica ce face el mai exact): bhop
Serverul impune conditii strict HLDS/REHLDS?: -
Ai cautat pluginul?(daca da, precizeaza cum): da
Necesita mod special?: -

caut un plugin de bhop cu care se poate prinde viteza mai repede, ca și cum ar exista un boost
am cautat pe net nu-s bune deloc..
Last edited by mariusexeqt on 08 Jan 2021, 10:07, edited 1 time in total.
RoyalServer
User avatar
Rainq
Membru, skill +2
Membru, skill +2
Posts: 681
Joined: 21 Jul 2015, 19:50
Detinator Steam: Da
CS Status: Retras
Detinator server CS: zm.extreamcs.com
SteamID: mrainq
Reputatie: Fost super moderator
Fost detinator ZM.eXtreamCS.COM
Fost Membru Club eXtreamCS (trei luni)
Fond eXtream: 0
Location: Bucharest
Discord: manuraiders
Has thanked: 29 times
Been thanked: 51 times
Contact:

07 Jan 2021, 10:53

Code: Select all

#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>

#define VERSION "1.2"
//#define	FL_ONGROUND	(1<<9)	// not moving on the ground (REMOVE)

new bunny_mode, bunny_factor;

public plugin_init() {
	register_plugin("Auto BunnyHop", VERSION, "Night Dreamer");
	register_cvar("Auto_BunnyHop_version",    VERSION, FCVAR_SERVER|FCVAR_SPONLY);
	set_cvar_string("Auto_BunnyHop_version",    VERSION);	
	bunny_mode = register_cvar("abh_on","1");
	bunny_factor = register_cvar("abh_factor","0");
	RegisterHam(Ham_Player_Jump,"player","bunnyhop");
}

public bunnyhop(id) {
	if(get_pcvar_num(bunny_mode) == 0)
		return HAM_IGNORED;
	{
	if((pev(id,pev_flags) & FL_ONGROUND) && get_pcvar_float(bunny_factor) >= 1)
	{
	      new Float: Vel[3];
	      pev(id,pev_velocity,Vel);
	      Vel[2] = get_pcvar_float(bunny_factor);
	      set_pev(id,pev_velocity,Vel);
	      set_pev(id,pev_gaitsequence, 6);
	      set_pev(id,pev_frame, 0.0)
	}
	if((pev(id,pev_flags) & FL_ONGROUND) && get_pcvar_float(bunny_factor) <= 0)
	{
	      new Float: Vel[3], Float: Spd;
	      pev(id,pev_maxspeed,Spd);
	      pev(id,pev_velocity,Vel);
	      Vel[2] = Spd;
	      set_pev(id,pev_velocity,Vel);
	      set_pev(id,pev_gaitsequence, 6);
	      set_pev(id,pev_frame, 0.0)
	}
	}
	return HAM_IGNORED;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1048\\ f0\\ fs16 \n\\ par }
*/
Image
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

07 Jan 2021, 15:57

Rainq wrote:
07 Jan 2021, 10:53

Code: Select all

#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>

#define VERSION "1.2"
//#define	FL_ONGROUND	(1<<9)	// not moving on the ground (REMOVE)

new bunny_mode, bunny_factor;

public plugin_init() {
	register_plugin("Auto BunnyHop", VERSION, "Night Dreamer");
	register_cvar("Auto_BunnyHop_version",    VERSION, FCVAR_SERVER|FCVAR_SPONLY);
	set_cvar_string("Auto_BunnyHop_version",    VERSION);	
	bunny_mode = register_cvar("abh_on","1");
	bunny_factor = register_cvar("abh_factor","0");
	RegisterHam(Ham_Player_Jump,"player","bunnyhop");
}

public bunnyhop(id) {
	if(get_pcvar_num(bunny_mode) == 0)
		return HAM_IGNORED;
	{
	if((pev(id,pev_flags) & FL_ONGROUND) && get_pcvar_float(bunny_factor) >= 1)
	{
	      new Float: Vel[3];
	      pev(id,pev_velocity,Vel);
	      Vel[2] = get_pcvar_float(bunny_factor);
	      set_pev(id,pev_velocity,Vel);
	      set_pev(id,pev_gaitsequence, 6);
	      set_pev(id,pev_frame, 0.0)
	}
	if((pev(id,pev_flags) & FL_ONGROUND) && get_pcvar_float(bunny_factor) <= 0)
	{
	      new Float: Vel[3], Float: Spd;
	      pev(id,pev_maxspeed,Spd);
	      pev(id,pev_velocity,Vel);
	      Vel[2] = Spd;
	      set_pev(id,pev_velocity,Vel);
	      set_pev(id,pev_gaitsequence, 6);
	      set_pev(id,pev_frame, 0.0)
	}
	}
	return HAM_IGNORED;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1048\\ f0\\ fs16 \n\\ par }
*/

nu i bun..
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

29 Jan 2021, 18:48

up..
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:

30 Jan 2021, 11:58

mariusexeqt wrote:
29 Jan 2021, 18:48
up..
Setarile pentru viteza le-ai facut macar ?

Code: Select all

sv_airaccelarate 100
sv_maxvelocity 100
sv_maxspeed 9999
no...
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

30 Jan 2021, 15:58

Laurentiu P. wrote:
30 Jan 2021, 11:58
mariusexeqt wrote:
29 Jan 2021, 18:48
up..
Setarile pentru viteza le-ai facut macar ?

Code: Select all

sv_airaccelarate 100
sv_maxvelocity 100
sv_maxspeed 9999
toate setarile facute si nimic. se prinde viteza foarte greu
User avatar
Rainq
Membru, skill +2
Membru, skill +2
Posts: 681
Joined: 21 Jul 2015, 19:50
Detinator Steam: Da
CS Status: Retras
Detinator server CS: zm.extreamcs.com
SteamID: mrainq
Reputatie: Fost super moderator
Fost detinator ZM.eXtreamCS.COM
Fost Membru Club eXtreamCS (trei luni)
Fond eXtream: 0
Location: Bucharest
Discord: manuraiders
Has thanked: 29 times
Been thanked: 51 times
Contact:

30 Jan 2021, 16:18

pluginul ala e mai bun decat serverul tau ,invata sa faci bhop sa prinzi viteza
Image
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

30 Jan 2021, 17:00

Rainq wrote:
30 Jan 2021, 16:18
pluginul ala e mai bun decat serverul tau ,invata sa faci bhop sa prinzi viteza
esti total pe langa , crezi ca ceream un plugin de bhop pentru ca nu stiu sa fac?
User avatar
Rainq
Membru, skill +2
Membru, skill +2
Posts: 681
Joined: 21 Jul 2015, 19:50
Detinator Steam: Da
CS Status: Retras
Detinator server CS: zm.extreamcs.com
SteamID: mrainq
Reputatie: Fost super moderator
Fost detinator ZM.eXtreamCS.COM
Fost Membru Club eXtreamCS (trei luni)
Fond eXtream: 0
Location: Bucharest
Discord: manuraiders
Has thanked: 29 times
Been thanked: 51 times
Contact:

30 Jan 2021, 17:13

mariusexeqt wrote:
30 Jan 2021, 17:00
Rainq wrote:
30 Jan 2021, 16:18
pluginul ala e mai bun decat serverul tau ,invata sa faci bhop sa prinzi viteza
esti total pe langa , crezi ca ceream un plugin de bhop pentru ca nu stiu sa fac?
ti-am dat ce e bun asa ca nu te mai caca pe tine
Image
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

30 Jan 2021, 17:28

Rainq wrote:
30 Jan 2021, 17:13
mariusexeqt wrote:
30 Jan 2021, 17:00
Rainq wrote:
30 Jan 2021, 16:18
pluginul ala e mai bun decat serverul tau ,invata sa faci bhop sa prinzi viteza
esti total pe langa , crezi ca ceream un plugin de bhop pentru ca nu stiu sa fac?
ti-am dat ce e bun asa ca nu te mai caca pe tine
am cerut un plugin de bhop, mi-ai dat unul si nu-i bun cu toate setarile facute si tu imi spui sa invat bhop :)))
esti cam orb :face_begging_eyes: :kiss_smiley:
User avatar
Rainq
Membru, skill +2
Membru, skill +2
Posts: 681
Joined: 21 Jul 2015, 19:50
Detinator Steam: Da
CS Status: Retras
Detinator server CS: zm.extreamcs.com
SteamID: mrainq
Reputatie: Fost super moderator
Fost detinator ZM.eXtreamCS.COM
Fost Membru Club eXtreamCS (trei luni)
Fond eXtream: 0
Location: Bucharest
Discord: manuraiders
Has thanked: 29 times
Been thanked: 51 times
Contact:

30 Jan 2021, 17:57

Code: Select all

"m_rawinput"  "1"
"m_filter"  "1"
"m_forward"  "1"
DACA AI STEAM scrie astea in consola
Image
User avatar
mariusexeqt
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 199
Joined: 01 Jan 2020, 22:55
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 4 times
Been thanked: 4 times
Contact:

30 Jan 2021, 18:45

Rainq wrote:
30 Jan 2021, 17:57

Code: Select all

"m_rawinput"  "1"
"m_filter"  "1"
"m_forward"  "1"
DACA AI STEAM scrie astea in consola
le aveam deja, am toate setarile , folosesc acelasi plugin de il aveam pe fostul meu server de furien, dar nu inteleg ce ar putea sa aiba
Post Reply

Return to “Cereri”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 8 guests