PawnHerp
Pretty much exactly what the plugin description says!
Currently it is COMPLETELY pointless, as I haven't gone through the trouble to finish adding commands, such as one that more automatically handles adding commands, or ones that makes it so that each chat message is automatically written to the file.
Currently I don't really recommend using this plugin, I'm more publishing it as proof-of-concept, as well as looking for comments and suggestions (beyond the obvious stupid, writing it at 5 AM use of variables).
I admit that there is very little point to actually using this plugin at all, but sometimes an idea strikes, and...well, sometimes you just have to write such things!
Requirements:
System2 extension (http://forums.alliedmods.net/showthread.php?t=146019)
Example use:
would output:
Addendum: I'm aware that there may be issues with player's names using this system, I'll deal with that at a later date though.
Currently it is COMPLETELY pointless, as I haven't gone through the trouble to finish adding commands, such as one that more automatically handles adding commands, or ones that makes it so that each chat message is automatically written to the file.
Currently I don't really recommend using this plugin, I'm more publishing it as proof-of-concept, as well as looking for comments and suggestions (beyond the obvious stupid, writing it at 5 AM use of variables).
I admit that there is very little point to actually using this plugin at all, but sometimes an idea strikes, and...well, sometimes you just have to write such things!
Requirements:
System2 extension (http://forums.alliedmods.net/showthread.php?t=146019)
Example use:
Code:
sm_newfile herp
sm_writeline public OnPluginStart(){
sm_writeline PrintToChatAll("Herp Plugin Loaded!");
sm_writeline }
sm_compile
Code:
/* Plugin Template built by Ingame Editor! */
#include <sourcemod>
public Plugin:myinfo =
{
name = "herp",
author = "=(eG)=™Necavi",
description = "Made using Ingame Editor!",
version = "0.1",
url = "www.necavi.com"
}
public OnPluginStart(){
PrintToChatAll("Herp Plugin Loaded!");
}
Orignal From: PawnHerp
Post a Comment