View Single Post
Re: NoOb needs help making a plugin
Old
  (#2)
MoOfTaStIc
Member
 
Status: Offline
Posts: 3
Join Date: Feb 2008
Default Re: NoOb needs help making a plugin - 02-02-2008

What i have so far is...

#include <sourcemod>

public Plugin:myinfo =
{
name = "freeze unfreeze plugin",
author = "MoOfTaStIc",
description = "My first plugin ever",
version = "1.0.0.0",
url = "http://www.sourcemod.net/"
};

public OnPluginStart()
{
native bool:AcceptEntityInput(ent, "DisableMotion", -1, -1, 0)
native bool:AcceptEntityInput(ent, "EnableMotion", -1, -1, 0)
}
  
Reply With Quote