DY357LX Posted September 26, 2014 Report Share Posted September 26, 2014 I like the look of this, but I got to thinking... would it be possible to have it so that only certain UID's (Admins) can see the messages? (Death messages are off on our server but this would make the Admins' lives a little easier.) Maybe something like what custom loadout scripts use? Make an kill_msg_check.sqf, load it via mission init.sqf: [] execVM "kill_msg_check.sqf"; Then in kill_msg_check.sqf. waitUntil {(getPlayerUID player) != ""}; _loadList = ["ADMINID1", "ADMINID2"]; _lpID = getPlayerUID player; if ((_lpID in ["ADMINUID1"]) && (_lpID in _loadList)) then { [] execVM "kill_msg.sqf"; } Would something like that work? I'm probably off the mark there but thought I'd ask. Link to comment Share on other sites More sharing options...
Stranger Posted September 27, 2014 Report Share Posted September 27, 2014 Why do still players spawn at their bodys after get killed? I tought it was fixed? Link to comment Share on other sites More sharing options...
0verHeaT Posted September 27, 2014 Author Report Share Posted September 27, 2014 Why do still players spawn at their bodys after get killed? I tought it was fixed? It has been fixed. Make sure to follow the updated instructions. Link to comment Share on other sites More sharing options...
DECO1919 Posted September 28, 2014 Report Share Posted September 28, 2014 Hey, now its working!!! But the chance to show this, is a bit low. Maybe just 20-40% of the kills will be showed. Is it possibility to set it higher? Link to comment Share on other sites More sharing options...
xO_Zero_Ox Posted September 28, 2014 Report Share Posted September 28, 2014 Hey, now its working!!! But the chance to show this, is a bit low. Maybe just 20-40% of the kills will be showed. Is it possibility to set it higher? Nope its the Server that doesnt get the PKILL variable everytime. IIRC its a bug of Epoch Link to comment Share on other sites More sharing options...
iSoJu Posted September 30, 2014 Report Share Posted September 30, 2014 Is the download link updated? I installed the new one and the instructions differ from the gitub Link to comment Share on other sites More sharing options...
0verHeaT Posted September 30, 2014 Author Report Share Posted September 30, 2014 Is the download link updated? I installed the new one and the instructions differ from the gitub You are right. I must have forgot this. It has been changed to the correct code now. Link to comment Share on other sites More sharing options...
SadBoy1981 Posted October 3, 2014 Report Share Posted October 3, 2014 Description Get all kill notification nicely displayed in the left upper corner. This will include the picture of the gun and the shot distance. The format will look like that: [killer] ['image'] [victim] ['distance in meters'] To see how it will look like in game: How to edit this when messages dont show kill distance? My players dont want it... In text messages i edit, but in your code where i must to edit, be cool to see same code without distance Link to comment Share on other sites More sharing options...
Mechman007 Posted October 3, 2014 Report Share Posted October 3, 2014 Hi, anyone that can tell me how to change the text size to be a bit smaller maybe?? thanks Link to comment Share on other sites More sharing options...
0verHeaT Posted October 3, 2014 Author Report Share Posted October 3, 2014 How to edit this when messages dont show kill distance? My players dont want it... In text messages i edit, but in your code where i must to edit, be cool to see same code without distance Just replace this _kill_txt = format ["<t align='left' size='0.9'>%1 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<img size='1.0' align='left' image='%2'/>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'> %3 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'>[%4m]</t>",_killerName,_pic,_victimName,(ceil _distance)]; with _kill_txt = format ["<t align='left' size='0.9'>%1 </t>",_killerName,_pic,_victimName]; _kill_txt = _kill_txt + format ["<img size='1.0' align='left' image='%2'/>",_killerName,_pic,_victimName]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'> %3</t>",_killerName,_pic,_victimName]; Link to comment Share on other sites More sharing options...
PeterBeer Posted October 3, 2014 Report Share Posted October 3, 2014 Hi, anyone that can tell me how to change the text size to be a bit smaller maybe?? thanks Find this bit : _kill_txt = format ["<t align='left' size='0.9'>%1 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<img size='1.0' align='left' image='%2'/>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'> %3 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'>[%4m]</t>",_killerName,_pic,_victimName,(ceil _distance)]; Change size='1.0' To what ever size you want and change each line size Link to comment Share on other sites More sharing options...
LePogo Posted October 3, 2014 Report Share Posted October 3, 2014 <t align='left' size='0.9'> Mess with the value in this case 0.9 is the size. Lower that to something smaller like 0.75 You wil need to change it in every text box. Link to comment Share on other sites More sharing options...
SadBoy1981 Posted October 4, 2014 Report Share Posted October 4, 2014 Just replace this _kill_txt = format ["<t align='left' size='0.9'>%1 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<img size='1.0' align='left' image='%2'/>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'> %3 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'>[%4m]</t>",_killerName,_pic,_victimName,(ceil _distance)]; with _kill_txt = format ["<t align='left' size='0.9'>%1 </t>",_killerName,_pic,_victimName]; _kill_txt = _kill_txt + format ["<img size='1.0' align='left' image='%2'/>",_killerName,_pic,_victimName]; _kill_txt = _kill_txt + format ["<t align='left' size='0.9'> %3</t>",_killerName,_pic,_victimName]; Thanks Link to comment Share on other sites More sharing options...
Pro_Speedy Posted October 4, 2014 Report Share Posted October 4, 2014 This seems less funtioning now that nit was on release alot of the time there is no picture inbetween names and get errors come up like cannot find picture Nil Link to comment Share on other sites More sharing options...
Gr8 Posted October 5, 2014 Report Share Posted October 5, 2014 I was able to fix most of the issues but player duping is the one i cant fix Link to comment Share on other sites More sharing options...
Pro_Speedy Posted October 7, 2014 Report Share Posted October 7, 2014 Still getting players spawning back at there bodies aswell as alot of picture nilm not found sent to all clients on most deaths 16:24:29 Error in expression <>%1 </t>",_killerName,_pic,_victimName,(ceil _distance)]; _kill_txt = _kill_txt > 16:24:29 Error position: <ceil _distance)]; _kill_txt = _kill_txt > 16:24:29 Error ceil: Type String, expected Number 16:24:29 File z\addons\dayz_server\compile\server_playerDied.sqf, line 41 Link to comment Share on other sites More sharing options...
0verHeaT Posted October 7, 2014 Author Report Share Posted October 7, 2014 I was able to fix most of the issues but player duping is the one i cant fix Still getting players spawning back at there bodies aswell as alot of picture nilm not found sent to all clients on most deaths Remember to use the updated instruction to install this script. All bugs are already fixed. Link to comment Share on other sites More sharing options...
Gibster Posted October 8, 2014 Report Share Posted October 8, 2014 I'm currently having a problem with my server, I'm not getting any error messages in the console that I can see. Which makes me think the issue is client side in the pbo file when a player joins the splash screen for epoch loading stays up even when the player has loaded. Eventually you can walk and hear the character walking. Anyone know of the issue? Did I put the kill_msg.sqf file in the wrong spot? (I put it a folder in the directory and referenced it in the init.sqf) Link to comment Share on other sites More sharing options...
Jey Posted October 8, 2014 Report Share Posted October 8, 2014 Dunno if it had been discussed somewhere ese. The script seems to be working: : but not everytime the custom message is displayed on the left upper right corner. What could be the source of this issue? I am usisng infistar, could that be the reason? Link to comment Share on other sites More sharing options...
Thug Posted October 9, 2014 Report Share Posted October 9, 2014 I agree with OverHeat. Link to comment Share on other sites More sharing options...
Pro_Speedy Posted October 9, 2014 Report Share Posted October 9, 2014 Still get Nilm death messages and yes i am using the latest ones Link to comment Share on other sites More sharing options...
Pro_Speedy Posted October 11, 2014 Report Share Posted October 11, 2014 Still get players respawning at there bodies, does the code in playerdied go in before the closing bracket or out? Link to comment Share on other sites More sharing options...
0verHeaT Posted October 16, 2014 Author Report Share Posted October 16, 2014 Still get players respawning at there bodies, does the code in playerdied go in before the closing bracket or out? Just after _loc_message = format["PKILL: %1 was killed by %2 with weapon %3 from %4m", _victimName, _killerName, _weapon, _distance]; Check your fnc_plyrHit.sqf if you get the respawn bug. Link to comment Share on other sites More sharing options...
Tricks Posted October 22, 2014 Report Share Posted October 22, 2014 So is this a fully functional working script? Is the OP updated with all these "fixes" I see? Link to comment Share on other sites More sharing options...
fr1nk Posted October 22, 2014 Report Share Posted October 22, 2014 I've seen it work fine in 1.0.5.1. Haven't read the entire thread, not sure about the fixes. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now