Raised This Month: $51 Target: $400
 12% 

[TF2] need help to make a simple plugin pls!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Mini Purple
Member
Join Date: May 2014
Old 05-10-2014 , 00:46   [TF2] need help to make a simple plugin pls!
Reply With Quote #1

Hey guys, i want a plugin when i type for exemple !commands or !help print to chat a text, anyone can give me the code for it pls?
Mini Purple is offline
Send a message via Skype™ to Mini Purple
Internet Bully
Member
Join Date: Apr 2014
Old 05-10-2014 , 02:44   Re: [TF2] need help to make a simple plugin pls!
Reply With Quote #2

PHP Code:
#include <sourcemod> 

public Plugin:myinfo 
{
    
name "I don't know how to search",
    
author "Mini Purple",
    
description "The wiki is a great source for starting your first plugin.",
    
url "https://wiki.alliedmods.net/Introduction_to_SourceMod_Plugins"
}

public 
OnPluginStart()
{
    
RegConsoleCmd("help"Cmd_Help);
    
RegConsoleCmd("commands"Cmd_Commands);
}

public 
Action:Cmd_Help(clientargs)
{
    
ReplyToCommand(client"poop");
    return 
Plugin_Handled;
}

public 
Action:Cmd_Commands(clientargs)
{
    
ReplyToCommand(client"face");
    return 
Plugin_Handled;


Last edited by Internet Bully; 05-10-2014 at 03:16.
Internet Bully is offline
Oshizu
Veteran Member
Join Date: Nov 2012
Location: Warsaw
Old 05-10-2014 , 05:03   Re: [TF2] need help to make a simple plugin pls!
Reply With Quote #3

Quote:
Originally Posted by Internet Bully View Post
PHP Code:
#include <sourcemod> 
public Plugin:myinfo 
{
    
name "I don't know how to search",
    
author "Mini Purple",
    
description "The wiki is a great source for starting your first plugin.",
    
url "https://wiki.alliedmods.net/Introduction_to_SourceMod_Plugins"

It was a little too direct with "I don't know how to search" part.

A little easier snippet
PHP Code:
public OnPluginStart()
{
    
RegConsoleCmd("sm_help"Help)
}

public 
Action:Help(clientargs)
{
    
PrintToChat(client"[SM] You typed !help mate")

__________________
...

Last edited by Oshizu; 05-10-2014 at 05:06.
Oshizu is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 22:49.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode