Raised This Month: $ Target: $400
 0% 

Demo-Recorder


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   Counter-Strike        Category:   Server Management       
Sofeltis
Member
Join Date: Nov 2007
Old 09-09-2008 , 16:49   Demo-Recorder
Reply With Quote #1

Demo Recorder

author:Sofeltis
version:
1.0

Description:

This plugin is forcing player to record demo in they cstrike folder.When admin ban some player for cheat he will ask player which he ban to show to him his demo...With that demo admin will se if player have cheat or not...Sry for my bad english...
Attached Files
File Type: sma Get Plugin or Get Source (Demo-Recorder.sma - 1310 views - 750 Bytes)
__________________

Last edited by Sofeltis; 09-10-2008 at 05:30.
Sofeltis is offline
Bend3R
Veteran Member
Join Date: Oct 2004
Location: Sweden (Stockholm)
Old 09-09-2008 , 16:56   Re: Demo-Recorder
Reply With Quote #2

Acually, a very nice idea as proof for all the admins.
The user just need to publish the demo.

Last edited by Bend3R; 09-09-2008 at 17:01.
Bend3R is offline
WSZ
Junior Member
Join Date: Jun 2008
Old 09-10-2008 , 03:50   Re: Demo-Recorder
Reply With Quote #3

any commands?
WSZ is offline
Alka
AMX Mod X Plugin Approver
Join Date: Dec 2006
Location: malloc(null)
Old 09-10-2008 , 04:10   Re: Demo-Recorder
Reply With Quote #4

It looks like is starting the record when round starts, then stop it when round ends.
Alka is offline
tuty
Veteran Member
Join Date: Jul 2008
Location: UK
Old 09-10-2008 , 05:15   Re: Demo-Recorder
Reply With Quote #5

nice one
__________________
tuty is offline
Send a message via ICQ to tuty Send a message via AIM to tuty
amokossi
Senior Member
Join Date: Apr 2008
Old 09-10-2008 , 05:17   Re: Demo-Recorder
Reply With Quote #6

There is a plugin called amx_exec that can do the same and much more....
you can exec every command on a player...snapshot, quit, say, record, stop.....so you can force players to record a demo and stop it...i guess a demo the whole round is to much...I implemented the amx_exec into the client_menu...

regards
amokossi is offline
Send a message via ICQ to amokossi Send a message via MSN to amokossi
Sofeltis
Member
Join Date: Nov 2007
Old 09-10-2008 , 05:28   Re: Demo-Recorder
Reply With Quote #7

It's not too much to recording all roun,because on the start of new round demo record on the same name and using 1-2 mb off space...

@Fix warnings...
__________________
Sofeltis is offline
F4RR3LL
Member
Join Date: Jun 2008
Location: Russia :)
Old 09-10-2008 , 09:12   Re: Demo-Recorder
Reply With Quote #8

Code:
get_user_name(player,name,31);

What for it?
F4RR3LL is offline
F4RR3LL
Member
Join Date: Jun 2008
Location: Russia :)
Old 09-10-2008 , 09:14   Re: Demo-Recorder
Reply With Quote #9

Code:
public client_putinserver(id) 
{   
    set_task(7.0, "cmdRec", id)
}
public cmdRec(id)
{
   if(is_user_connected(id))
   {
       client_cmd(id, "record DEMO") 
   }
}
So is not easier? =]
F4RR3LL is offline
xPaw
Retired AMX Mod X Moderator
Join Date: Jul 2008
Old 09-10-2008 , 11:13   Re: Demo-Recorder
Reply With Quote #10

PHP Code:
#include <amxmodx>

public plugin_init() 
    
register_plugin("Demo Recorder","1.0","")

public 
client_putinserver(id)
    
set_task(7.0"cmdRec"id)

public 
client_disconnected(id)
    
client_cmd(id,"stop")

public 
cmdRec(id)
{
    if(
is_user_connected(id))
    { 
// is user not disconnected in 7secs?
        
client_cmd(id"record demolol")
        
client_print(idprint_chat"[AMXX] At your PC started recording demo with name 'demolol', if admin ban you, upload this demo.")
    }

edited code...
__________________

Last edited by xPaw; 09-10-2008 at 13:50.
xPaw is offline
Reply



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


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