Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
dont work( what's wrong here?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using InfinityScript; namespace skroll { public class ScrollZ : BaseScript { public ScrollZ() : base() { //changeGametype("QCZM"); Call("setdvar", "motd", "Welcome to Server!."); } private void createServerHud() { HudElem motd = HudElem.CreateServerFontString("boldFont", 1f); motd.SetPoint("CENTER", "BOTTOM", 0, -19); motd.Foreground = true; motd.HideWhenInMenu = true; OnInterval(25000, () => { motd.SetText(Call("getdvar", "motd")); motd.SetPoint("CENTER", "BOTTOM", 1100, -10); motd.Call("moveovertime", 25); motd.X = -700; return true; }); } } }