DayZ
906 평점
VPPNotifications
2
2
   
어워드
즐겨찾기
즐겨찾기됨
즐겨찾기 해제
Type: Mod
Mod Type: Economy, Mechanics
파일 크기
게시일
업데이트일
27.950 KB
2019년 3월 11일 오후 11시 40분
2022년 4월 19일 오전 5시 22분
업데이트 노트 11개 (보기)

다운로드 위해 구독하기
VPPNotifications

설명
Notification framework designed to send messages to players on the server globally and or individually.

Usage:
g_Game.SendMessage(false,identity,"Server Login:","Welcome "+identity.GetName() + ", enjoy your stay!",10,2,false,true,"",0,0);

Execute that code anywhere server side:
Example:
override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName) { Entity playerEnt; playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE"); Class.CastTo(m_player, playerEnt); g_Game.SendMessage( false, identity, "Server Login:", "Welcome "+identity.GetName() + ", enjoy your stay!", 10, 2, false, true, "", 0, 0); GetGame().SelectPlayer(identity, m_player); return m_player; }

Example Welcome message on player join/respawn:
override void InvokeOnConnect(PlayerBase player, PlayerIdentity identity) { super.InvokeOnConnect(player, identity); g_Game.SendMessage( false, identity, "Server Login:", "Welcome "+identity.GetName() + ", enjoy your stay!", 10, 2, false, true, "", 0, 0); }

Example With Image:
g_Game.SendMessage( false, identity, "Server Login:", "Welcome "+identity.GetName() + ", enjoy your stay! Please make sure to read our rules!", 10, 2, false, true, "set:dayz_gui image:DayZLogo", // Imagesets 512, 156); If you wish to not use imagesets, you could directly load a PAA however, image may look poor in quality Example Path --> "VanillaPPMap\\scripts\\GUI\\Textures\\CustomMapIcons\\waypointeditor_CA.paa" //Direct .PAA

Paramters:
g_Game.SendMessage( bool Global, PlayerIdentity receiver , string messageTitle, string message, int duration, int fadeTime, bool skipQueue, bool doFadeIn, string imagePath, float ImageSizeX, float ImageSizeY);

Notes: if you wish to send a global message, make sure to set the first param to
true
and the second param as
NULL

If you wish to not use an image with the notification, simply leave the string empty as shown in the example above.


Please Rate the mod, comment your issues below and i will try to find time and help you :)