View Single Post
SSheriFF
AlliedModders Donor
Join Date: May 2020
Location: Israel
Old 07-02-2020 , 06:14   Re: [CSGO][REQ] Problem with the Noscope Rounds
Reply With Quote #8

Quote:
Originally Posted by G0dFulL. View Post
Im having a problem using the Noscope round plugin for my awp server. Currently using 0netouchs plugin - https://forums.alliedmods.net/showthread.php?p=2528532
I cant really seem to find the solution. My problem is with the HUD. I tried to search but i cant seem to find another plugin better than this one sooo.
i tried using
(g_cvEnableText.BoolValue && g_cvInterval.IntValue > 0)CPrintToChat(client, "{green} NOSCOPE ROUND");PrintCenterTextAll("NOSCOPE ROUND");

instead of this
(g_cvEnableText.BoolValue && g_cvInterval.IntValue > 0)CPrintToChat(client, "{green} NOSCOPE ROUND");

But the HUD still wont show when the noscope round actually is.
If anybody can help me?
This plugin doesnt support hud messages, if you want you can change this
PHP Code:
CPrintToChat(client"{green} NOSCOPE ROUND"); 
to this
PHP Code:
            for (int i 1<= MaxClientsi++)
            {
                if (
IsClientInGame(i)&&!IsFakeClient(i))
                {
                    
SetHudTextParams(0.00.01.00025525500.00.00.0);//change the params as you like
                    
ShowHudText(i1"NOSCOPE ROUND STARTED");        
                }
            } 
__________________
Taking small private requests (Free) and big private requests (Paid).
Contact me via Discord: WilDick#1524

My Plugins:
SSheriFF is offline