Cerere plugin - FPS - FPS SERVER !

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
BoSsCS
Membru, skill +1
Membru, skill +1
Posts: 315
Joined: 30 Jan 2013, 10:06
Detinator Steam: Da
CS Status: Citesc forumul eXtreamCS.com...!
Detinator server CS: FURIEN.DEVIL.RO
SteamID: blade_cs1
Location: Botosani
Has thanked: 85 times
Been thanked: 4 times
Contact:

25 Mar 2014, 21:09

Salut. As dori si eu plugin-ul urmator va rog ! Daca este existent/ public....

Plugin-ul e urmatorul:
| Afiseaza codul
Image
P.S: Scuze pentru claritatea pozei, e taiata..
RoyalServer 2
User avatar
Deevix
Membru, skill +1
Membru, skill +1
Posts: 191
Joined: 10 Aug 2013, 23:17
Detinator Steam: Nu
CS Status: Zombie
Location: Summoner's Rift
Has thanked: 14 times
Been thanked: 5 times
Contact:

25 Mar 2014, 21:15

Image

ZOMBIE MOD3 LIKE BETA V1.0 (BASED ON ZP) (89%) [PRIVAT]
BoSsCS
Membru, skill +1
Membru, skill +1
Posts: 315
Joined: 30 Jan 2013, 10:06
Detinator Steam: Da
CS Status: Citesc forumul eXtreamCS.com...!
Detinator server CS: FURIEN.DEVIL.RO
SteamID: blade_cs1
Location: Botosani
Has thanked: 85 times
Been thanked: 4 times
Contact:

25 Mar 2014, 21:20


E bun si asta. Dar l-as prefera pe acela, daca este public...

Mai astept.
User avatar
Deevix
Membru, skill +1
Membru, skill +1
Posts: 191
Joined: 10 Aug 2013, 23:17
Detinator Steam: Nu
CS Status: Zombie
Location: Summoner's Rift
Has thanked: 14 times
Been thanked: 5 times
Contact:

25 Mar 2014, 21:21

Este si dinala pe net :-? Da nu am timp eu sa il fac / sa-l gasesc , am alta treaba , dar am zis ca poate acela te ajuta.
Image

ZOMBIE MOD3 LIKE BETA V1.0 (BASED ON ZP) (89%) [PRIVAT]
BoSsCS
Membru, skill +1
Membru, skill +1
Posts: 315
Joined: 30 Jan 2013, 10:06
Detinator Steam: Da
CS Status: Citesc forumul eXtreamCS.com...!
Detinator server CS: FURIEN.DEVIL.RO
SteamID: blade_cs1
Location: Botosani
Has thanked: 85 times
Been thanked: 4 times
Contact:

25 Mar 2014, 22:30

Deevix wrote:Este si dinala pe net :-? Da nu am timp eu sa il fac / sa-l gasesc , am alta treaba , dar am zis ca poate acela te ajuta.
Ok. Inteleg. Nu e ceea ce vreau eu, dar e bun si ala.

UPP ! Mai astept...
User avatar
Ulquiorra
Fost moderator
Fost moderator
Posts: 2053
Joined: 25 Jul 2010, 17:29
Detinator Steam: Da
CS Status: A mai trecut o zi asteptand una mai buna
Detinator server CS: Retras.
SteamID: STEAM_0:1:318247XX
Reputatie: Fost Scripter eXtreamCS
Fost Moderator ajutator
Nick anterior: Askhanar
Location: Braila, Romania.
Has thanked: 215 times
Been thanked: 1132 times

26 Mar 2014, 01:42

de unde ai SS ala ??
ma rog.. initial l-am facut pentru CryWolf.. cand a adaugat fps in plugin lui.. drept exemplu..
nu l-am publicat ca nu mai avea rost..
| Afiseaza codul
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <fakemeta>

#define PLUGIN "Client&Server FPS"
#define VERSION "1.0"

// --| FPS la client.
new Float:g_fClientGameTime[ 33 ];
new g_iClientFPS[ 33 ];
new g_iCurrentClientFPS[ 33 ];
new g_iClientFrames[ 33 ];
// --| FPS function.


// --| FPS la server.
new Float:g_fServerGameTime[ 33 ];
new g_iServerFPS[ 33 ];
new g_iCurrentServerFPS[ 33 ];
new g_iServerFrames[ 33 ];
// --| FPS function.

new sync;


public plugin_init( )
{
	register_plugin( PLUGIN, VERSION, "Askhanar" );
	
	// Pentru fps la client.
	register_forward( FM_PlayerPreThink, "fwd_PlayerPreThinkPost", true );
	
	// Pentru fps la jucatori.
	register_forward( FM_StartFrame, "fwd_StartFramePost", true );
	
	// Task de o secunda.. pentru mesaj hud.
	set_task( 1.0, "task_Show", _, _, _, "b", 0 );
	sync = CreateHudSyncObj( );
	// Add your code here...
}

public task_Show( )
{
	set_hudmessage( 236, 65, 56, 0.01, 0.30, 0, 0.0, 1.0, 0.1, 0.1, -1 );
	
	static iPlayers[ 32 ];
	static iPlayersNum;
	
	get_players( iPlayers, iPlayersNum, "ch" );
	if( !iPlayersNum )
		return;
	
	static id, i;
	for( i = 0; i < iPlayersNum; i++ )
	{
		id = iPlayers[ i ];
		ShowSyncHudMsg( id, sync, "FPS: %i^nServer FPS: %i", g_iCurrentClientFPS[ id ], g_iCurrentServerFPS[ id ] );
	
	}
	
}
	
					

public fwd_PlayerPreThinkPost( id )
{
	
	if( is_user_connected( id ) )
	{
		
		// --| FPS function directly token from kz_bugs_stats v0.62 by Newbie.
		g_fClientGameTime[ id ] = get_gametime( );
		
		if( g_iClientFPS[ id ] >= g_fClientGameTime[ id ] )
			g_iClientFrames[ id ] += 1;
		
		else
		{
			g_iClientFPS[ id ] += 1;
			g_iCurrentClientFPS[ id ] = g_iClientFrames[ id ];
			g_iClientFrames[ id ] = 0;
		}
		//--| FPS funtion.
		
		
			
	}
	
	//return FMRES_IGNORED;
}


public fwd_StartFramePost( )
{
	static iPlayers[ 32 ];
	static iPlayersNum;
	
	get_players( iPlayers, iPlayersNum, "ch" );
	if( !iPlayersNum )
		return FMRES_IGNORED;
	
	static id, i;
	for( i = 0; i < iPlayersNum; i++ )
	{
		id = iPlayers[ i ];
		
		// --| FPS function modified by me to gain server's fps.
		g_fServerGameTime[ id ] = get_gametime( );
		
		if( g_iServerFPS[ id ] >= g_fServerGameTime[ id ] )
			g_iServerFrames[ id ] += 1;
		
		else
		{
			g_iServerFPS[ id ] += 1;
			g_iCurrentServerFPS[ id ] = g_iServerFrames[ id ];
			g_iServerFrames[ id ] = 0;
		}
		//--| FPS funtion.
		
	}
	
	return FMRES_IGNORED;
	
}
Caut o persoana dedicata care se pricepe si stie ce face.
Vreau sa creeze si sa se ocupe de administrarea unui server de MU, da e vorba de vechiul joc..ma gandesc undeva la un season 3 ep1/2.

O sa achizitionez un domeniu .ro.
Totodata sponsorizez absolut orice este necesar.
Ma puteti contacta prin: http://solo.to/stfrzv
BoSsCS
Membru, skill +1
Membru, skill +1
Posts: 315
Joined: 30 Jan 2013, 10:06
Detinator Steam: Da
CS Status: Citesc forumul eXtreamCS.com...!
Detinator server CS: FURIEN.DEVIL.RO
SteamID: blade_cs1
Location: Botosani
Has thanked: 85 times
Been thanked: 4 times
Contact:

26 Mar 2014, 14:42

Askhanar wrote:de unde ai SS ala ??
ma rog.. initial l-am facut pentru CryWolf.. cand a adaugat fps in plugin lui.. drept exemplu..
nu l-am publicat ca nu mai avea rost..
| Afiseaza codul
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <fakemeta>

#define PLUGIN "Client&Server FPS"
#define VERSION "1.0"

// --| FPS la client.
new Float:g_fClientGameTime[ 33 ];
new g_iClientFPS[ 33 ];
new g_iCurrentClientFPS[ 33 ];
new g_iClientFrames[ 33 ];
// --| FPS function.


// --| FPS la server.
new Float:g_fServerGameTime[ 33 ];
new g_iServerFPS[ 33 ];
new g_iCurrentServerFPS[ 33 ];
new g_iServerFrames[ 33 ];
// --| FPS function.

new sync;


public plugin_init( )
{
	register_plugin( PLUGIN, VERSION, "Askhanar" );
	
	// Pentru fps la client.
	register_forward( FM_PlayerPreThink, "fwd_PlayerPreThinkPost", true );
	
	// Pentru fps la jucatori.
	register_forward( FM_StartFrame, "fwd_StartFramePost", true );
	
	// Task de o secunda.. pentru mesaj hud.
	set_task( 1.0, "task_Show", _, _, _, "b", 0 );
	sync = CreateHudSyncObj( );
	// Add your code here...
}

public task_Show( )
{
	set_hudmessage( 236, 65, 56, 0.01, 0.30, 0, 0.0, 1.0, 0.1, 0.1, -1 );
	
	static iPlayers[ 32 ];
	static iPlayersNum;
	
	get_players( iPlayers, iPlayersNum, "ch" );
	if( !iPlayersNum )
		return;
	
	static id, i;
	for( i = 0; i < iPlayersNum; i++ )
	{
		id = iPlayers[ i ];
		ShowSyncHudMsg( id, sync, "FPS: %i^nServer FPS: %i", g_iCurrentClientFPS[ id ], g_iCurrentServerFPS[ id ] );
	
	}
	
}
	
					

public fwd_PlayerPreThinkPost( id )
{
	
	if( is_user_connected( id ) )
	{
		
		// --| FPS function directly token from kz_bugs_stats v0.62 by Newbie.
		g_fClientGameTime[ id ] = get_gametime( );
		
		if( g_iClientFPS[ id ] >= g_fClientGameTime[ id ] )
			g_iClientFrames[ id ] += 1;
		
		else
		{
			g_iClientFPS[ id ] += 1;
			g_iCurrentClientFPS[ id ] = g_iClientFrames[ id ];
			g_iClientFrames[ id ] = 0;
		}
		//--| FPS funtion.
		
		
			
	}
	
	//return FMRES_IGNORED;
}


public fwd_StartFramePost( )
{
	static iPlayers[ 32 ];
	static iPlayersNum;
	
	get_players( iPlayers, iPlayersNum, "ch" );
	if( !iPlayersNum )
		return FMRES_IGNORED;
	
	static id, i;
	for( i = 0; i < iPlayersNum; i++ )
	{
		id = iPlayers[ i ];
		
		// --| FPS function modified by me to gain server's fps.
		g_fServerGameTime[ id ] = get_gametime( );
		
		if( g_iServerFPS[ id ] >= g_fServerGameTime[ id ] )
			g_iServerFrames[ id ] += 1;
		
		else
		{
			g_iServerFPS[ id ] += 1;
			g_iCurrentServerFPS[ id ] = g_iServerFrames[ id ];
			g_iServerFrames[ id ] = 0;
		}
		//--| FPS funtion.
		
	}
	
	return FMRES_IGNORED;
	
}
De pe Steam..,. (Profilul tau). Am vrut sa te intreb de el, dar m-ai sters de la Steam :|

Multumesc Ask ! :)

EDIT : Mda. Inteleg ca erai ocupat... Nu aveam de unde sti, vroiam doar sa te intreb daca ma poti ajuta... ( Sti tu la ce )
Last edited by Ulquiorra on 26 Mar 2014, 15:06, edited 1 time in total.
Reason: crek am avut un motiv intemeiat :))
User avatar
Snow.
Membru, skill +1
Membru, skill +1
Posts: 243
Joined: 18 Mar 2014, 21:59
Detinator Steam: Nu
Has thanked: 58 times
Been thanked: 24 times

26 Mar 2014, 22:14

Si de la mine ai un Multumesc Askhanar !
Ion Creanga - Romania Juna, 1869 wrote:Stiu ca sunt prost, dar cand ma uit in jurul meu, prind curaj !
Image
Post Reply

Return to “Cereri”

  • Information
  • Who is online

    Users browsing this forum: Yandex [Bot] and 25 guests