-
Content Count
23 -
Joined
-
Last visited
Community Reputation
7 NeutralAbout Sentepu
-
Rank
Scavenger
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
unpbo the dta/scripts.pbo youll find a lot of examples there
-
Random russian spam i guess, ignore it. Fixed the write issue by adding -scrAllowFileWrite launch option. (thx kerkkoh for wasting a few days on -srcAllowFileWrite :D :P )
-
OpenFile() seems still broken, if you absolutely need it i suggest trying with FileSerializer.
-
community offline mod, but its for offline. for online i use the chat base admin tool of this mission. https://github.com/da0ne/DZMods.
-
you have all the ID part there with a switch, create character is already in the init.c ...
-
x and z can be found with debug monitor or https://dayz.ginfo.gg/. a is 'elevation' if thats even a word.
-
Yes you can, create a proper mod instead of a hacky scripts folder at root. Then you can mod and override what you want.
-
you need basic scripting knowledge tho. Here's my way of doing it. https://www.reddit.com/r/dayz/comments/9km0rd/how_can_i_enable_death_message_on_my_server/ can also check my github: https://github.com/zalexki/DayZ-BlackRavenDM
-
a little search and read others post is enough. unpbo the dta/scripts.pbo file and search in that folder to know what functions you can use
-
Line 104: if(active_drop.send_proximity) SendMessageToPlayers("The plane has vanished"); Replace it by : if(active_drop !=NULL && active_drop.send_proximity) SendMessageToPlayers("The plane has vanished");
-
everything is explained, you need some basic knowledges tho ... I've started with this video which is enough : https://www.youtube.com/watch?v=ZQaytVeEwKo
-
this is sqf and it wont work for 0.63. mainly you have to mod the playerbase to add kill counter and some messages in the EEKilled method.
-
done it without the logs, i explained it here : https://www.reddit.com/r/dayz/comments/9km0rd/how_can_i_enable_death_message_on_my_server/e78kai6/
-
playerbase like i said just above oO
-
yes it works in playerbase, but to be sure the body will be deleted (imagine he doesnt respawn and rage quit) i've done this cleanup into the `EEKilled` method