Raised This Month: $ Target: $400
 0% 

Easy Plugin For Voice


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
derar
Junior Member
Join Date: Sep 2015
Location: Hell
Old 09-25-2015 , 09:51   Easy Plugin For Voice
Reply With Quote #1

Code!
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <cstrike>

public plugin_init()
{
register_plugin("Voice Management", "1.0", "derar");
register_clcmd("say /voicemenu", "ShowMenu", _, "Voice Menu By DerarDZ");
}
public ShowMenu(id)
{
new menu = menu_create("Voice Menu", "vm_voicemenu");
menu_additem(menu, "Voice ON! ", "", 0); // case 0
menu_additem(menu, "Voice OFF! ", "", 0); // case 1
menu_setprop(menu, MPROP_EXIT, MEXIT_ALL);
menu_display(id, menu, 0);
return PLUGIN_HANDLED;
}
public vm_voicemenu(id, menu, item)
{
if(item == MENU_EXIT)
{
menu_cancel(id);
return PLUGIN_HANDLED;
}
new command[6], name[64], access, callback;
menu_item_getinfo(menu, item, access, command, sizeof command - 1, name, sizeof name - 1, callback);
switch(item)
{
case 0:
{
client_print(id, print_chat, "[Voice Management!] You have Select Voice ON! ");
client_cmd(id, "voice_enable 1");
}

case 1:
{
client_print(id, print_chat, "[Voice Management!] You have selected Voice OFF! ");
client_cmd(id, "voice_enable 0");
}
}
menu_destroy(menu);
return PLUGIN_HANDLED;
}
Attached Files
File Type: sma Get Plugin or Get Source (Voice Management!.sma - 563 views - 1.3 KB)
derar is offline
derar
Junior Member
Join Date: Sep 2015
Location: Hell
Old 09-25-2015 , 09:56   Re: Easy Plugin For Voice
Reply With Quote #2

i know is easy , but my 1st plugin B|
derar is offline
Keys PK
Member
Join Date: Mar 2015
Location: Romania
Old 09-25-2015 , 20:09   Re: Easy Plugin For Voice
Reply With Quote #3

wtf
Keys PK is offline
Send a message via Skype™ to Keys PK
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 09-25-2015 , 23:19   Re: Easy Plugin For Voice
Reply With Quote #4

This is pointless because players can do this on their own computer. Also, the voice_enable setting is easily blocked by the client.
__________________
fysiks 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 00:22.


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