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

Need help to fix a bug in plugin


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Bullzai
Junior Member
Join Date: Mar 2012
Old 04-02-2012 , 16:09   Need help to fix a bug in plugin
Reply With Quote #1

Hello there, let me explain you the situation i'm in now. Ok, i have a VIP plugin (it's not mine, i got it few months ago from net), i modified it a little bit, in order to suite my needs, but i cannot repair one little bug, which is really annoying. The VIPs get new weapons and nades every round, they can see bullet dmg and get additional hp and $ for killing enemy, and here is the issue: whenever some1 joins my server, or revives (with revival plugin), all VIPs get new nades and weapon menu pops up again, while they should get those (weaps and nades) only once per round.
Attached Files
File Type: sma Get Plugin or Get Source (VIP.sma - 349 views - 10.1 KB)

Last edited by Bullzai; 04-02-2012 at 16:10.
Bullzai is offline
EpicMonkey
buttmonkey
Join Date: Feb 2012
Old 04-02-2012 , 16:20   Re: Need help to fix a bug in plugin
Reply With Quote #2

why are you looping through players when they are spawning ... , just check if they are vips when they spawn and give them the weapons you want to.

Edit :

PHP Code:
public fwHamPlayerSpawnPost(id
{
    if(
is_user_alive(id) && get_user_flags(id) & ADMIN_LEVEL_H)
    {
        
give_item(id"weapon_hegrenade");
        
give_item(id"weapon_flashbang");
        
give_item(id"weapon_flashbang");
        
give_item(id"weapon_smokegrenade");
        
give_item(id"item_assaultsuit");
        
give_item(id"item_thighpack");
        if(!
get_pcvar_num(g_menu_active))
        return 
PLUGIN_CONTINUE
        
if(round 1Showrod(id)
    }
    return 
PLUGIN_HANDLED


Last edited by EpicMonkey; 04-02-2012 at 16:25. Reason: added script
EpicMonkey is offline
Bullzai
Junior Member
Join Date: Mar 2012
Old 04-02-2012 , 16:30   Re: Need help to fix a bug in plugin
Reply With Quote #3

thx, it works perfectly.

Last edited by Bullzai; 04-03-2012 at 13:57.
Bullzai 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 02:07.


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