profile rewards

78043641

Well-Known Member
how can i make profile awards like, 10 hours played you have an mp5 alwasy when you die and spawn, or have a hero suit.would be great!

also how do i get aa12 to spawn, i can get ammo to come in but not the gun.
 
there is i see it but how do i make it so if you get to a point or even therescore is find i jsut need it so it gives them an edge for playing
 
Would be cool to do this automatically for a variety of things - Zombie kills, time spent alive, number of bandit kills, etc.
This could be easily done with all of those. The only problem with his, is that there isn't a variable in the server code for time spent on server that I found. There is one for all of the things you mentioned though.
 
There's a buncha the stats in the profile section that I'd like to reward players for achieving a specific target - how would I go about doing this?
 
There's a couple ways. 1 would be to check them on login for their achievements. Another would be to run an active checker (every few minutes or so) that would see if they've met their achievements. I think the only potential problem you would find is a way to check them off the list so to speak once they've achieved these.
 
If you want to learn, you would want to try learning some programing, and try implementing your own functions, and work your way up to the task you want to achieve. Best way of getting what you want done. Most people aren't going to want to do the work for someone for the good of their heart.
 
If you want to learn, you would want to try learning some programing, and try implementing your own functions, and work your way up to the task you want to achieve. Best way of getting what you want done. Most people aren't going to want to do the work for someone for the good of their heart.
Very true. I do a ton of stuff just to help people, but it all adds up. You can only rely on people for so much, you guys should get out there and try for yourselves. It's not as hard as you think.
 
Start with the database. You can get total time on the server from the profile table. Then, using reality custom loadouts, you could reward your survivors with a better loadout. Gonna need to learn MySQL and a language that will run on your server that you can run on a schedule (windows) / cron(linux)..
 
dayz_server.pbo/compile/server_playerSetup.sqf will be the best file too look it, it handles a lot of the variable collection.
You can also look at dayz_server.pbo/compile/server_playerLogin.sqf for handling extra data during their characters setup to give them custom items if they have passed some "achivements".
 
Back
Top