ItsMods

Full Version: is this way true
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

guys i have a question what method in line 2 is true ?!

CSHARP Code
  1. killcamTime = int.Parse(GetServerCFG("admin", "killcamTime", "0"));
  2. base.ServerCommand("set scr_killcam_time \"\"" + killcamTime);
  3. base.ServerCommand("set scr_killcam_posttime \"4\"");

or

CSHARP Code
  1. killcamTime = int.Parse(GetServerCFG("admin", "killcamTime", "0"));
  2. base.ServerCommand("set scr_killcam_time" + " \"" + killcamTime + "\"");
  3. base.ServerCommand("set scr_killcam_posttime \"4\"");
Method 2. You decompiled this from ProMod Plugin, right?