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

Disable Bank mod for Pistole round.


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
tkaway69
Senior Member
Join Date: Dec 2004
Location: Millbrook Alabama
Old 09-23-2007 , 09:59   Disable Bank mod for Pistole round.
Reply With Quote #1

How much coding would be involved in Restricting Players from using "Bank Mod" for the first round of play?
__________________
tkaway69 is offline
Send a message via AIM to tkaway69 Send a message via MSN to tkaway69 Send a message via Yahoo to tkaway69
Nican
Veteran Member
Join Date: Jan 2006
Location: NY
Old 09-23-2007 , 10:36   Re: Disable Bank mod for Pistole round.
Reply With Quote #2

I have not tested this, but it should look like something like this:

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

new iRounds;

public 
Plugin:myinfo 
{
    
name "No bank on pistol round",
    
author "Nican",
    
description "",
    
version "Beta#1",
    
url "http://www.sourcemod.net/"
};
 
public 
OnPluginStart() 
{    
    if(!
HookEventEx("round_start",Event_RoundStart))
        
LogMessage("Unable to hook round_start!");
}  

public 
Action:Event_RoundStart(Handle:event, const String:name[], bool:dontBroadcast){    
    if(
iRounds == 0)
        
ServerCommand("sm_bank_allow 0");
    
    if(
iRounds == 1)
        
ServerCommand("sm_bank_allow 1");
    
    
iRounds++;
}

public 
OnMapStart(){
    
iRounds 0;

__________________
http://www.nican132.com
I require reputation!
Nican is offline
Send a message via ICQ to Nican Send a message via MSN to Nican
tkaway69
Senior Member
Join Date: Dec 2004
Location: Millbrook Alabama
Old 09-23-2007 , 18:16   Re: Disable Bank mod for Pistole round.
Reply With Quote #3

Tested.. It compiles nicely and no errors that I can see. It seems to have no effect on Bank during Pistole round. Tried restarting server and any other Idea I had. Still, I was able to withdraw money from account.
__________________
tkaway69 is offline
Send a message via AIM to tkaway69 Send a message via MSN to tkaway69 Send a message via Yahoo to tkaway69
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 18:06.


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