Timeout la demo

Discutii legate de instalarea, configurarea si modificarea unui server de Counter-Strike.

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

Post Reply
DjLeonida
Membru, skill 0
Membru, skill 0
Posts: 4
Joined: 15 Nov 2012, 22:50
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Has thanked: 1 time
Contact:

15 Nov 2012, 23:05

Salut! Am si eu o problema pe serverul meu de cs si anume cand scriu "record numedemo" imi da timeout si ma scoate de pe server. Am incercat si cu amx_demo, insa jucatorul pe care trebuia facut demo-ul lua timeout.
Sper sa ma puteti ajuta...Stiu ca sunt multe pluginuri dar totusi, am cautat in fiecare sma din plg care le-am pus mai jos si nu am gasit deloc, doar sa fie din cele default ori din alea functions...

Uitati lista de pluginuri:

Code: Select all

 AMX Mod X plugins

; Admin Base - Always one has to be activated
admin.amxx		; admin base (required for any admin-related)
;admin_sql.amxx		; admin base - SQL version (comment admin.amxx)

; Basic
admincmd.amxx		; basic admin console commands
adminhelp.amxx		; help command for admin console commands
adminslots.amxx		; slot reservation
;multilingual.amxx	; Multi-Lingual management

; Menus
menufront.amxx		; front-end for admin menus
cmdmenu.amxx		; command menu (speech, settings)
plmenu.amxx		; players menu (kick, ban, client cmds.)
;telemenu.amxx		; teleport menu (Fun Module required!)
mapsmenu.amxx		; maps menu (vote, changelevel)
pluginmenu.amxx		; Menus for commands/cvars organized by plugin

; Chat / Messages
adminchat.amxx		; console chat commands
;antiflood.amxx		; prevent clients from chat-flooding the server
scrollmsg.amxx		; displays a scrolling message
imessage.amxx		; displays information messages
adminvote.amxx		; vote commands

; Map related
nextmap.amxx		; displays next map in mapcycle
;mapchooser.amxx		; allows to vote for next map
timeleft.amxx		; displays time left on map

; Configuration
pausecfg.amxx		; allows to pause and unpause some plugins
statscfg.amxx		; allows to manage stats plugins via menu and commands

; Counter-Strike
restmenu.amxx		; restrict weapons menu
statsx.amxx		; stats on death or round end (CSX Module required!)
;miscstats.amxx		; bunch of events announcement for Counter-Strike
;stats_logging.amxx	; weapons stats logging (CSX Module required!)

; Enable to use AMX Mod plugins
;amxmod_compat.amxx	; AMX Mod backwards compatibility layer

;------------------------------------------------------------------------------------------

; Mai jos vine pluginurile dvs. 1 pe linie
Krond-Functions.amxx
ultimate_sounds.amxx
rr_score.amxx
bcd_hudtimer.amxx
advanced_gag.amxx
autorr.amxx
last_maps.amxx
admin_spec_esp.amxx
comenzi.amxx
messages_manager.amxx
amx_destroy.amxx
advanced_blind.amxx
ultimate_ssx.amxx
amx_last.amxx
amx_who.amxx
ptb_ro.amxx
amx_exterminate.amxx
;ghostchat.amxx
hpk.amxx
amx_showip.amxx
afkbomb.amxx
slapteam.amxx
slayteam.amxx
multi_sv_downloadurl.amxx
amx_exec.amxx
amx_rocket.amxx
quit.amxx
amx_uberslap.amxx
amx_disarm.amxx
amx_extend.amxx
cfg_afc.amxx
cfg_top10.amxx
Map_Spawns_Editor.amxx
demo.amxx
llg-functions.amxx
setare_noapte.amxx
tag.amxx
RoyalServer 2
User avatar
THEKING.
Manager CS
Manager CS
Posts: 3339
Joined: 21 Apr 2012, 17:24
Detinator Steam: Da
CS Status: Away
Detinator server CS: cs.extreamcs.com
SteamID: divinsx
Reputatie: Fost super moderator
Manager CS
Nume anterior: CLAU.
1/3
Location: Romania
Has thanked: 84 times
Been thanked: 74 times

16 Nov 2012, 15:33

Sterge demo.amxx !
DjLeonida
Membru, skill 0
Membru, skill 0
Posts: 4
Joined: 15 Nov 2012, 22:50
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Has thanked: 1 time
Contact:

16 Nov 2012, 16:22

Multumesc, Clau. Dupa cum ai spus era de la demo, cu toate ca in sma nu scrie nimic de timeout sau record...
Puteti da T.C.

Uite sma-ul poate sunt si altii in acelasi impas...

Code: Select all

/* 

	This plugin is most for cheaters that ar using wallhack.
	With a snaphot the cheat will not show but a demo does not lie... :P

	Cmd's:
	To start the demo on a player type:
	amx_demo <name>
	To stop the demo type:
	amx_stopdemo <name>
	
	P.S. This is the most simple plugin ever made...
	With this plugin you can take a demo to somebody...
 */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Demo Record"
#define VERSION "1.1"
#define AUTHOR "FireW@ll"


public plugin_init() {
	register_plugin(PLUGIN, VERSION, AUTHOR)
	register_concmd("amx_demo","demo",ADMIN_BAN,"<name> - takes a demo of a client")
	register_concmd("amx_stopdemo","stopdemo",ADMIN_BAN,"<name> - stops the demo taken")
}


public demo(id,level,cid){
	if(!cmd_access(id,level,cid,1))
		return 0;
		
	new cmd[32], mapname[32], name[32], time[32], name2[32]
	read_argv(1, cmd, 31);
	new player = cmd_target(id, cmd, 5);
	
	if (!player)
		return 0;
	get_time("%m/%d/%Y - %H:%M:%S",time,31)
	get_user_name(player,name,31)
	get_user_name(id,name2,31)
	get_mapname(mapname,31)
	client_cmd(player,"record %s_%s.dem",name,mapname)
	client_print(id,print_console,"[Demo Info] Ii faci Demo jucatorului %s, Ora: %s",name,time)
	log_amx("%s Started The Demo On %s, Time %s",name, name2,time)
	return 0;
}

public stopdemo(id,level,cid){
	if(!cmd_access(id,level,cid,1))
		return 0;
		
	new cmd[32], name[32], time[32], name2[32]
	read_argv(1, cmd, 31);
	new player = cmd_target(id, cmd, 5);
	
	if (!player)
		return 0;
	get_time("%m/%d/%Y - %H:%M:%S",time,31)
	get_user_name(player,name,31)
	get_user_name(id,name2,31)
	client_cmd(player,"stop")
	client_print(id,print_console,"[Demo Info] Ai oprit Demo facut jucatorului %s, Ora: %s",name,time)
	log_amx("%s Stoped The Demo On %s, Time %s",name, name2,time)
	return 0;
}

/// ******************* End Of Plugin *************** ///
User avatar
THEKING.
Manager CS
Manager CS
Posts: 3339
Joined: 21 Apr 2012, 17:24
Detinator Steam: Da
CS Status: Away
Detinator server CS: cs.extreamcs.com
SteamID: divinsx
Reputatie: Fost super moderator
Manager CS
Nume anterior: CLAU.
1/3
Location: Romania
Has thanked: 84 times
Been thanked: 74 times

16 Nov 2012, 18:54

Ma bucur ca ti-am fost de folos.
Post Reply

Return to “Probleme la servere dedicate de Counter-Strike”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 72 guests