View Single Post
Author Message
quilhos
Veteran Member
Join Date: Jun 2010
Old 09-19-2016 , 22:01   Furien Mod - Need help converting it to CS GO
Reply With Quote #1

Hey guys,

First of all I'm making a stable version of furien mod for cs go (ported from cs 1.6), but I'm kind of struggling with some core parts of the plugin.´

If you guys dont mind losing a bit of time helping I would be very grateful.

Making terrorist team invisible I'm using sv_disable_immunity_alpha (I read somewhere that It should make this code work).
Code:
if(IsClientInGame(i) && IsPlayerAlive(i) && GetClientTeam(i) == 2) 
{
	keys = GetClientButtons(i);
        if (keys & IN_FORWARD || keys & IN_BACK || keys & IN_MOVELEFT || keys & IN_MOVERIGHT)
        {
		SetEntityRenderMode(i, RENDER_NORMAL);
        }
}
else
{
	SetEntityRenderMode(i, RENDER_NONE);
}
Wallhang
I'm using https://forums.alliedmods.net/showth...ight=wall+walk
I read some topics about it being ported to cs go but didn't find any real fix.

Thx in advanced guys ;)
__________________
ELO RATING SYSTEM - SQL [COMPLETE]
Quote:
Originally Posted by Liverwiz View Post
DDDRRRRAAAAMMMMAAAAA!!!???

Put this shit on pause while i go get some popcorn!!
quilhos is offline