View Single Post
rmrf
New Member
Join Date: Jan 2013
Old 02-18-2013 , 04:15   Re: [CS:S, CS:GO] Roll The Dice (Würfeln)
Reply With Quote #56

Hey,

Thanks for the great plugin! Just somethings I noted about it:

1) M3 doesn't exist in CS:GO, maybe add some CSS vs CSGO flags?
Code:
#define UNKNOWN 0
#define GAME_CSTRIKE  1
#define GAME_CSGO   2

decl String:gdir[PLATFORM_MAX_PATH];
GetGameFolderName(gdir, sizeof(gdir));
if (StrEqual(gdir, "cstrike", false))   game = GAME_CSTRIKE; else
if (StrEqual(gdir, "csgo", false))    game = GAME_CSGO; else
game = UNKNOWN;
Then just have a switch for whenever you need to evaluate 'game.' For my fix for this, since I'll only use this plugin for CSGO, I just changed the weapon to weapon_Sawedoff.

2) There might be something weird with one of the speed upgrades. I've had two friends tell me that when the received it their view began shaking quite a lot to the point of it being unplayable.

I'm running this plugin on CSGO with the latest snapshots for MMSource, SMod, and SDKHooks

Well that's all that I noticed for now. Again, thanks for the great plugin and actually maintaining it!

Last edited by rmrf; 02-18-2013 at 04:26.
rmrf is offline