Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/28/20 in Posts

  1. Summary: This script helps to get input easily in Client-Side with C#. Download: BasicInput.cs (github.com) Usage: // Just get input. BasicInput.GetInput((input) => { Chat.Output("Your message is: " + input); }); //------------- // Get input with Title & Maxlength BasicInput.GetInput((input) => { Chat.Output("Your message is: " + input); }, "Type your message:", 32); //------------- // Get input with existing text: BasicInput.GetInput((input) => { Chat.Output("Your message is: " + input); }, "Type your message:", 32, "Old Message"); // -------------- // Also can get 2 parameters to get state of input. BasicInput.GetInput((input, state) => { if (state == BasicInput.InputResultState.Canceled) { Chat.Output("Input Canceled!"); } if (state == BasicInput.InputResultState.Completed) { Chat.Output("Input completed successfully and mesasge is " + input); } });
    2 points
  2. Remove bin and obj folders, they could cause weird issues and it's probably the cause of those errors.
    1 point
  3. Talepleriniz bizim için önemli! Pillbox Medical Department uzun bir süreden sonra yenilenen kadrosuyla tekrardan aktif! Sizler de başvurmak isterseniz aşağıdaki bölüme göz gezdirin! https://forum.sevenroleplay.com/topic/1631-pillbox-hill-medical-center-örnek-başvuru-formu/ Aynı zamanda Future V2 Videomuzu da izlemeyi unutma!
    1 point
×
×
  • Create New...