Raised This Month: $32 Target: $400
 8% 

[CS:GO] Warden plugin. (suggestions/thoughts)


Post New Thread Reply   
 
Thread Tools Display Modes
TheUnderTaker
Senior Member
Join Date: Dec 2013
Location: Israel
Old 07-25-2015 , 07:48   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #11

Do you want only prints that someone is warden and mark the warden with beacon, glow or something or you want edit a jb plugin and add it?
If jb plugin send me script.
And I can't do for you Databases with MySQL Cause I still didn't learn it (I'm trying to learn from yesterday)
__________________
SourcePawn, C# and C++ Programmer.

My plugin list

Last edited by TheUnderTaker; 07-25-2015 at 07:49.
TheUnderTaker is offline
Bchewy
AlliedModders Donor
Join Date: Nov 2014
Old 07-25-2015 , 09:31   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #12

A menu with certain days like zombie day, warday, freeday and so on and so forth
Also a command with "sm_fire" like a voting scheme to fire the warden (those wardens that people hate)
Bchewy is offline
Kaneki
New Member
Join Date: Sep 2018
Location: Sweden, Stockholm
Old 04-15-2019 , 20:54   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #13

Well done!
Kaneki is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 04-17-2019 , 08:50   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #14

Quote:
Originally Posted by terminator18 View Post
!menu options:
Option 1:Open/Close Cells
Option 2: FreeDay
Option 3: Color Prisoners in 2 teams
Option 4: Games
Option 5: Ding!

PS:You should create sub menus for options 2 and 4 such as:
FreeDay Menu
Option 1: Select Prisoner
Option 2: Freeday for All

Games menu:
Option 1: Box
Option 2: Zombie Day
Option 3: Awp Day
Option 4: Riot Day

These are my current suggestions but I have others too if you want.Don't hesitate to ask for help!.
Working on it right now, Need more ideas Discord : Pilo#8253
__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 04-17-2019 , 12:20   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #15

Quote:
Originally Posted by orion64 View Post
Wow.These things would be damn good for jailbreak server.
Working on it right now
__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 04-17-2019 , 12:22   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #16

Quote:
Originally Posted by Bchewy View Post
A menu with certain days like zombie day, warday, freeday and so on and so forth
Also a command with "sm_fire" like a voting scheme to fire the warden (those wardens that people hate)
Hahahhaa
__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 04-17-2019 , 12:28   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #17

Quote:
Originally Posted by Bchewy View Post
"sm_fire"
Best idea ever!

PHP Code:
#include <sourcemod>
#include <cstrike>

public void OnPluginStart()
{
    
RegConsoleCmd("sm_fire"cmd_fire);
}

public 
Action cmd_fire(int clientint args)
{
    
int alivecount 0;
    for (
int i 1<= MaxClientsi++)
    if (
IsClientInGame(i) && !IsFakeClient(i) && GetClientTeam(i) == CS_TEAM_CT)++alivecount
    
if (alivecount == 1)
    {
        
VoteFire();
    }
    else
        
PrintToChat(client"[SM] Need to wait until there is only 1 warden");
}

void VoteFire()
{
    
Menu vote = new Menu(menuHandler_Vote);
    
vote.SetTitle("Burn the warden? (Please Yes!)");
    
    
vote.AddItem("yes""Yes!");
    
vote.AddItem("no""No :|");
    
    
vote.ExitButton false;
    
vote.DisplayVoteToAll(20);
}

public 
int menuHandler_Vote(Menu menuMenuAction actionint param1int param2)
{
    if (
action == MenuAction_VoteEnd)
    {
        
char info[32];
        
menu.GetItem(param2infosizeof(info));
        
        if (
StrEqual(info"yes"))
        {
            
ServerCommand("sm_burn @ct");
        }
        else if(
StrEqual(info"no"))
        {
            
PrintToChatAll("For some reason the server choose not to burn the warden :(");
        }
    }

__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo is offline
Pilo
AlliedModders Donor
Join Date: Jan 2019
Location: Israel
Old 04-21-2019 , 09:41   Re: [CS:GO] Warden plugin. (suggestions/thoughts)
Reply With Quote #18

And only now I see everything here is from 2015 and I'm almost done my plugin
__________________

Taking Private(PAID) Plugins In PM
Feel free to Donate with PayPal
Feel free to message me in Discord Pilo#8253
Total donated : 25$
Pilo 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:29.


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