Hello again everyone,
Today I will be sharing my custom made player tools menu script for you guys to use.
Basic Info:
This tool is easy to implement and you can put whatever scripts you want in it (Even cheating ones). Players cannot get banned for using the scripts as they are executed serverside, not client.
Ok, so lets begin shall we?
Files Needed:
Menu Package (File Hosted @ Mediafire.com)
That's it, the rest can be done by you.
Step 1:
The first step is extracting the csm.zip file and placing the folder csm into your dayz mission folder.
So now you should have a folder called "csm" in your dayz mission folder.
More Details:
The CSM folder has all of the files needed for the scroll menu to work - we will discuss how to edit stuff at the end of the tutorial.
Step 2:
We must now edit the init.sqf file so that when a player joins the server, the menu is enabled.
You must find the line "if (!isDedicated) then {"in your init.sqf and add this under it
" _scroll = [] execVM "csm\CommandActivate.sqf";" What this is doing is executing the file when you log into the server.
As you can see, I have many other scripts that execute, but you can see where the _scroll line has to be placed.
Step 3:
All you need to do is repack your mission file and send it back to the server and your done
How to edit scripts, menu etc:
Ok, I know a lot of people are going to want to do this, but this can be quite complex for an inexperienced user.
To edit what scripts you would like to have enabled, then navigate to your csm folder and open up
CommandsMenu.sqf.
As you can see, you see all the functions and toggles that are enabled on the tool menu. The best way to add a new function is too simply copy and paste one of the other functions. For example, I would like to add a vehicle cleanup script, so I would simply copy one of the other ones, and paste it below.
So in my case, I would copy the whole "Flip Vehicle" line and paste it below so it looked like this:
So now all I have to do is edit the name and the script name as shown here:
It is very easy and simple to add in scripts as shown here, but you may ask now: "Where do I put this script file?"
Just to be safe, place your script in each of the three folders (Actions, Misc and Toggle).
This concludes the tutorial and if you would like help with any of this, send me a private message and I will be more than happy to do so.
Thanks
Today I will be sharing my custom made player tools menu script for you guys to use.
Basic Info:
This tool is easy to implement and you can put whatever scripts you want in it (Even cheating ones). Players cannot get banned for using the scripts as they are executed serverside, not client.
Ok, so lets begin shall we?
Files Needed:
Menu Package (File Hosted @ Mediafire.com)
That's it, the rest can be done by you.
Step 1:
The first step is extracting the csm.zip file and placing the folder csm into your dayz mission folder.

So now you should have a folder called "csm" in your dayz mission folder.
More Details:
The CSM folder has all of the files needed for the scroll menu to work - we will discuss how to edit stuff at the end of the tutorial.
Step 2:
We must now edit the init.sqf file so that when a player joins the server, the menu is enabled.
You must find the line "if (!isDedicated) then {"in your init.sqf and add this under it
" _scroll = [] execVM "csm\CommandActivate.sqf";" What this is doing is executing the file when you log into the server.

As you can see, I have many other scripts that execute, but you can see where the _scroll line has to be placed.
Step 3:
All you need to do is repack your mission file and send it back to the server and your done
How to edit scripts, menu etc:
Ok, I know a lot of people are going to want to do this, but this can be quite complex for an inexperienced user.
To edit what scripts you would like to have enabled, then navigate to your csm folder and open up
CommandsMenu.sqf.

As you can see, you see all the functions and toggles that are enabled on the tool menu. The best way to add a new function is too simply copy and paste one of the other functions. For example, I would like to add a vehicle cleanup script, so I would simply copy one of the other ones, and paste it below.

So in my case, I would copy the whole "Flip Vehicle" line and paste it below so it looked like this:

So now all I have to do is edit the name and the script name as shown here:

It is very easy and simple to add in scripts as shown here, but you may ask now: "Where do I put this script file?"
Just to be safe, place your script in each of the three folders (Actions, Misc and Toggle).
This concludes the tutorial and if you would like help with any of this, send me a private message and I will be more than happy to do so.
Thanks