View Single Post
KyleS
SourceMod Plugin Approver
Join Date: Jul 2009
Location: Segmentation Fault.
Old 05-03-2012 , 01:17   Re: [EXTENSION][Any?] PointDetour
Reply With Quote #2

Example:

PHP Code:
#pragma semicolon 1
#include <sourcemod>
#include <pscd>

public Action:PointServerCommandForward(const String:sCommand[])
{
    
PrintToServer("DetourCalled!!!!!");
    
PrintToServer("Command Trying to be Called: %s"sCommand);
    return 
Plugin_Continue;

Quote:
Originally Posted by Server
DetourCalled!!!!!
Command Trying to be Called: vip_escapezone2 2080 50 -115 2400 280 -17
DetourCalled!!!!!
Command Trying to be Called: vip_escapezone 2100 -825 32 2515 -378 308
Unknown command "vip_escapezone2"
Unknown command "vip_escapezone"

Last edited by KyleS; 05-03-2012 at 20:56.
KyleS is offline