View Single Post
juss
Senior Member
Join Date: Jan 2016
Old 09-17-2016 , 15:48   Re: Pinion Adverts [HTML5]
Reply With Quote #363

with this new part still not able to join in CSGO
switch (g_Game)
{
case kGameCSGO, kGameCSS, kGameBrainBread2:
FakeClientCommand(client, "joingame");
case kGameDODS, kGameND:
ClientCommand(client, "changeteam");
}


So I've changed it to this
switch (g_Game)
{
case kGameCSGO:
ClientCommand(client, "joingame");
case kGameCSS, kGameBrainBread2:
FakeClientCommand(client, "joingame");
case kGameDODS, kGameND:
ClientCommand(client, "changeteam");
}


probably "FakeClientCommand" doesn't work with CSGO , works good with "ClientCommand"

Last edited by juss; 09-17-2016 at 15:50.
juss is offline