Всплывающая информация о сервере и уходящая через определенное время! Это в onPlayerSpawned() Код: self thread ShowLeftBottomAd(1, "ТЕКСТ", 0); self thread ShowRightBottomAd(2, "ТЕКСТ", 0); wait 0.5; self thread ShowRightBottomAd(4, "[/b] Всплывающая информация о сервере и уходящая через определенное время! Это в onPlayerSpawned() [CODE] self thread ShowLeftBottomAd(1, "ТЕКСТ", 0); self thread ShowRightBottomAd(2, "ТЕКСТ", 0); wait 0.5; self thread ShowRightBottomAd(4, "ТЕКСТ", -10); wait 0.5; self thread ShowLeftBottomAd(5, "ТЕКСТ", -20); self thread ShowRightBottomAd(6, "ТЕКСТ", -20); wait 0.5; self thread ShowLeftBottomAd(7, "^2Your XUID: ^3"+self.guid, -30); self thread ShowRightBottomAd(8, "ТЕКСТ", -30); Это в любом месте _rank Код: ShowLeftBottomAd(adID, adText, adY) { self endon( "disconnect" ); if(!isDefined(self.adInfos)){ self.adInfos = []; } if(!isDefined(self.adInfos[adID])){ self.adInfos[adID] = self createFontString("hudbig", 0.5); } info = self.adInfos[adID]; outX = -307; inX = 13; stepX = 10; info setPoint("SB2TTOMLEFT", "SB2TTOMLEFT", outX, adY); info setText(adText); //comes in for ( infoX = outX; infoX < inX; infoX+=stepX ){ info setPoint("SB2TTOMLEFT", "SB2TTOMLEFT", infoX, adY); wait 0.1; } //shows wait 5; //goes out for ( infoX = inX; infoX > outX; infoX-=10 ){ info setPoint("SB2TTOMLEFT", "SB2TTOMLEFT", infoX, adY); wait 0.1; } //hides info setText(""); } ShowRightBottomAd(adID, adText, adY) { self endon( "disconnect" ); if(!isDefined(self.adInfos)){ self.adInfos = []; } if(!isDefined(self.adInfos[adID])){ self.adInfos[adID] = self createFontString("hudbig", 0.5); } info = self.adInfos[adID]; outX = 307; inX = -13; stepX = 10; info setPoint("SB2TTOMRIGHT", "SB2TTOMRIGHT", outX, adY); info setText(adText); //comes in for ( infoX = outX; infoX > inX; infoX-=stepX ){ info setPoint("SB2TTOMRIGHT", "SB2TTOMRIGHT", infoX, adY); wait 0.1; } //shows wait 5; //goes out for ( infoX = inX; infoX < outX; infoX+=stepX ){ info setPoint("SB2TTOMRIGHT", "SB2TTOMRIGHT", infoX, adY); wait 0.1; } //hides info setText(""); } Автор: bmw blacksoul
Просто в нижних краях экрана при каждом спавне игрока вылезают надписи... Посмотреть вложение 48 Просто в нижних краях экрана при каждом спавне игрока вылезают надписи... Посмотреть вложение 48