Jump to content

Sentepu

Members
  • Content Count

    23
  • Joined

  • Last visited

Community Reputation

7 Neutral

About Sentepu

  • Rank
    Scavenger

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Sentepu

    Set Player spawn

    unpbo the dta/scripts.pbo youll find a lot of examples there
  2. Sentepu

    FileMode.WRITE Handle always = 0

    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 )
  3. Sentepu

    FileMode.WRITE Handle always = 0

    OpenFile() seems still broken, if you absolutely need it i suggest trying with FileSerializer.
  4. Sentepu

    Admin Menu

    community offline mod, but its for offline. for online i use the chat base admin tool of this mission. https://github.com/da0ne/DZMods.
  5. Sentepu

    Select Spawns

    you have all the ID part there with a switch, create character is already in the init.c ...
  6. Sentepu

    Vehicles

    x and z can be found with debug monitor or https://dayz.ginfo.gg/. a is 'elevation' if thats even a word.
  7. Sentepu

    No File Scripts PBO ?

    Yes you can, create a proper mod instead of a hacky scripts folder at root. Then you can mod and override what you want.
  8. Sentepu

    Kill log

    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
  9. Sentepu

    Select Spawns

    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
  10. Sentepu

    Better Airdrops (improved version)

    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");
  11. Sentepu

    Kill Feed

    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
  12. Sentepu

    KILL STREAK

    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.
  13. Sentepu

    Kill Feed

    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/
  14. Sentepu

    Cleanup of dead players bodys

    playerbase like i said just above oO
  15. Sentepu

    Cleanup of dead players bodys

    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
×