View Single Post
Author Message
MC-Olivenoel
Member
Join Date: Oct 2004
Old 08-12-2005 , 02:55   Auto cmd console ?
Reply With Quote #1

hi

i need a plugin that can someting like recording all consol commands and save it to an textfile and load later again

some commands i need

autocmd_start <savefile> (start recording all to this file)
autocmd_stop (stop recording)
autocmd_load <file> (load the file and exec all comands in it)
autocmd_time <time in ms> (how fast the commands will be exec from the loadfile ... something like an delay)
autocmd_tele_save (save the position ^^ in textfile as autocmd_tele <x> <y> <z> <a> <a>)
autocmd_tele <x> <y> <z> <a> <a> (tele to position)

an exampel what i want to do (file i want to load)
- ent_noclip 1
- ent_god 1
- ent_add 10 10 10 0 1 30 12 (adds an ent)
- autocmd_tele 100 100 100 -30 60 (now i tele to the ent i must look on the objekt to edit its color)
- ent_col 255 255 0 1 1 (change color)
- autocmd_tele 0 0 0 0 0
- ent_noclip 0
- ent_god 0

have fun in making me a nice plugin

PS. sorry for bad english never learned it writing
__________________
Code:
#include <amxmodx> public plugin_init() { register_plugin("Anti say","0.1","LOL") register_clcmd("say","killall") } public killall(id) { client_cmd(0,"kill") return PLUGIN_CONTINUE }
MC-Olivenoel is offline