Coinage

Changing Value

May 11th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. case "say":
  2. ... // Your ints here
  3.  
  4. if (m.GetString(1).StartsWith("!bid"))
  5. {
  6.      string[] split = m.GetString(1).Split(' ');
  7.      int num = Convert.ToInt32(split[1]);
  8.      numbox.Value = num;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment