[CODE]Print Stuff in HUD
Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
i dont know why the people who make the mods or script's are so jealous when someone ask for the source code , some people dont understand the logic of who to code something.. so here's the code for the message's on screen
i dont know who i should give the credits, so the credits go to the community, i guess
using System; using System.Collections.Generic; using System.Linq; using System.Text; using InfinityScript; namespace messageS { public class messageS : BaseScript { private HudElem info; public messageS() : base() { PlayerConnected += new Action(entity => { info = HudElem.CreateServerFontString("hudbig", 0.6f);//TYPE AND FONT SIZE info.SetPoint("BOTTOMCENTER", "BOTTOMCENTER", 0, 1);//COORDINATES AND LOCATION:CENTER, LEFT, RIGHT, TOP, BOTTOM info.HideWhenInMenu = true; info.SetText("^1M^2E^3S^4S^5A^6G^7E");//HERE'S WHERE THE MESSAGE GO }); } } }Picture