Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
okay im trying to build a plugin to go along with my Servertool but for some reason i cannot get the damn thing to read console commands
is there a certain point in my plugin i need to have the commands
private BaseScript.EventEat CommandFilter(Entity player, string message) { string[] strArray = message.Split(new char[] { ' ' }); // Then i check for kick if (strArray[0].Equals("!kick")) { kick(message, player); return 2; } }im getting a type casting error on return 2; Any ideas why??