Advertisement
Guest User

Untitled

a guest
Jul 12th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public OnPluginStart(){
  2.     g_Time = CreateConVar("sm_test", "15.0", "Sets a time", _, true, 15.0);
  3.         if(GetConVarInt(g_OnOther) != 0)
  4.             g_othertime = GetConVarFloat(g_Time) * 60;
  5. }
  6.  
  7. public OnClientConnected(){
  8.     LogError("The Review time is %d and The Float is %d", g_othertime, GetConVarFloat(g_Time));
  9. }
  10.  
  11.  
  12. // The Error
  13. L 07/12/2014 - 17:47:52: [test.smx] The time is 1147207680 and The Float is 1097859072
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement