Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
how do I make a text//
instead of this
namespace messageS { public class messageS : BaseScript { private HudElem info; public messageS() : base() { PlayerConnected += new Action(entity => { info = HudElem.CreateServerFontString("Arial Black", 1.6f); info.SetPoint("TOPCENTER", "TOPCENTER", -6, 0); info.HideWhenInMenu = true; info.SetText("Text"); }); } } }did it
namespace messageS { public class messageS : BaseScript { private HudElem label; public messageS() : base() { PlayerConnected += new Action(entity => { label = HudElem.CreateServerFontString("Arial Black", 1.6f); label.SetPoint("TOPCENTER", "TOPCENTER", -6, 0); label.HideWhenInMenu = true; label.SetText("Text"); }); } } }but I could not get
help