Little plugin for Record..

Started by PrEn1uMz
10/02/2007 23:54
Page 1 of 3
PrEn1uMz10/02/2007 23:54(edited 09/06/2008 16:20)

This plugin is SAFE for demo recording. -Fatalis

hi all, just made a little plugin for people who record some wr.

Usage : type /record , then it will record :
mapname_playername_newtime

if you fall, juste make a restart,
it will stop your current record
and start a new one.

for stop record mode just type /stop

I know it's a bit useless but it can interest some people

Download

zhady Tournament #211/02/2007 01:03

Gj :) I'll try it.

maniac11/02/2007 02:39

nice PrEn1uMz =)
will test it l8er...

(M.E.O.)St. Jimmy11/02/2007 18:17

nice job :)

Dogos^11/02/2007 20:42

I prefer to use binds but it could be useful.. Gj.





[ Edited Sun Feb 11 2007, 08:44PM ]

Murvelman11/02/2007 20:49

Could you make it so when you write /stop, you kill yourself and then the demo stops?

PrEn1uMz11/02/2007 21:51

replace

gStatus[id] = false
client_cmd( id, "stop")
client_print( id, print_chat, "%s You will not record anymore", HEAD_MESSAGE)

by

gStatus[id] = false
client_cmd( id, "kill")
client_cmd( id, "stop")
client_print( id, print_chat, "%s You will not record anymore", HEAD_MESSAGE)

[ Edited Sun Feb 11 2007, 09:52PM ]

l00n_NooN12/02/2007 18:07

Niceeeee Gj i realy liked

Murvelman12/02/2007 18:53

thx PrEn1uMz :D
maybe you could do so you automatically get the right settings (no godmode etc.)

PrEn1uMz12/02/2007 22:37

replace :

client_print( id, print_chat, "%s Recording : %s", HEAD_MESSAGE, gForm[id])
client_cmd( id, "record %s", gForm[id])

by

client_print( id, print_chat, "%s Recording : %s", HEAD_MESSAGE, gForm[id])
client_cmd( id, "record %s", gForm[id])
client_cmd( id, "developer 0")
client_cmd( id, "fps_max 101")
set_cvar_num( "kz_godmode", 0)
set_cvar_num( "kz_checkpoints", 0)
set_cvar_num( "kz_semiclip", 0)
set_cvar_num( "sv_maxspeed", 320)
set_cvar_num( "edgefriction", 2)
set_cvar_num( "mp_footsteps", 1)
set_cvar_num( "sv_cheats", 0)
set_cvar_num( "sv_gravity", 800)
set_cvar_num( "sv_airaccelerate", 10)
set_cvar_num( "sv_stepsize", 18)
set_cvar_num( "sv_maxvelocity", 2000)
[ Edited Mon Feb 12 2007, 10:37PM ]

Murvelman12/02/2007 22:58

damn i gotta learn this stuff :D

heiss24/02/2007 12:27

where do i have to replace that stuff?
in .sm or .amxx (sry i am a damn newbie)

PrEn1uMz24/02/2007 12:45

.sma is the source, u have to put it in addons/amxmodx/scripting and the .amxx in addons/amxmodx/plugins

then add : kzrecords.amxx
in addons/amxmodx/configs/plugins.ini
[ Edited Sat Feb 24 2007, 12:45PM ]

heiss24/02/2007 13:01

tahts not the prob ;) i know how to add mods... but i wanna know where to add these thinks posted ahead with kill and right settings

PrEn1uMz24/02/2007 14:01

aaaa lol sorry

in .sma , open .sma with wordpad or something, and then compil it

heiss24/02/2007 14:26

how can i compile it?^^

PrEn1uMz24/02/2007 15:34

try http://www.amxmodx.org/webcompiler.cgi

spermis24/02/2007 16:07

if i add that kill and cvars stuff it doesnt compile.
EDIT:
oh no it works great
[ Edited Sat Feb 24 2007, 04:20PM ]

PrEn1uMz24/02/2007 16:10

paste me all ur code plz

heiss24/02/2007 18:10

hmm when i type /stop it first stops and then kills
so the kill is not at the demo ;//

Page 1 of 3

Please log in to post replies.