Jump to content

[Release] Vehicle Service Point (Refuel, Repair, Rearm) [Script]


Axe Cop

Recommended Posts

  • 2 weeks later...

High, This is a great Script, Thank You very much. 

 

I was just wondering if it was possible to separate the things you can get service for. For example, set it up so that players can only fuel up at the MAP_A_FuelStation_Feeds and nothing else, but if they get close to the MAP_repair_center they would only get the repair option, etc. 

Doesn't make sense that you can repair or rearm at a fuel pump, sure it's better than nothing for sure, don't get me wrong, and I love the script as do our players. I just want to make things a bit more realistic on our servers.

 

If this has already been covered in the thread, I apologize, as I did not see it. and if it has, please point me to the post.

Link to comment
Share on other sites

  On 10/3/2014 at 5:59 PM, Ganja said:

High, This is a great Script, Thank You very much. 

 

I was just wondering if it was possible to separate the things you can get service for. For example, set it up so that players can only fuel up at the MAP_A_FuelStation_Feeds and nothing else, but if they get close to the MAP_repair_center they would only get the repair option, etc. 

Doesn't make sense that you can repair or rearm at a fuel pump, sure it's better than nothing for sure, don't get me wrong, and I love the script as do our players. I just want to make things a bit more realistic on our servers.

 

If this has already been covered in the thread, I apologize, as I did not see it. and if it has, please point me to the post.

I think that was already answered once or twice. :D

The short answer for the easiest solution is still to copy the the main script (service_point.sqf) and set up different class names and settings for your needs, you can just start the different scripts in your init.sqf that's no problem :)

e.g.

execVM "service_point\service_point.sqf";
execVM "service_point\service_point_rep.sqf"; // copy for repair only with different config
Link to comment
Share on other sites

  • 2 weeks later...
  On 10/12/2014 at 6:55 PM, korzhyk said:

Hi everyone! I have a problem, players on server can't use refuel/repair/rearm menu because actions in menu are removed after short moment. But admins can use. Server runs with infiSTART antihack. Latest 125548 patch.

check your anti hack tools (infistar?), there are some solutions in this thread.

Link to comment
Share on other sites

Hello Axe Cop,

 

Trying to get your Service Point working on a NPC in my traders. I have the NPCs in place but there is no option. I have placed your files in a folder called "Service", inside another folder called "Scripts" (Super OCD  :P ). Here is my service_point.sqf:

 

  Reveal hidden contents

 

No errors in my RPT, cant seem to figure this one out. Any help would be great, thank you!  :D

Link to comment
Share on other sites

  On 10/13/2014 at 9:37 PM, Axe Cop said:

well if you have a folder called "Service" and inside another folder called "Scripts", then you should define it like that and not the other way around:

_folder = "Service\Scripts\";
??? :)

Omg Axe Cop thank you. I must have been staring at it too long. LOL!

Link to comment
Share on other sites

  On 10/13/2014 at 9:37 PM, Axe Cop said:

well if you have a folder called "Service" and inside another folder called "Scripts", then you should define it like that and not the other way around:

_folder = "Service\Scripts\";

??? :)

 

Ok I switched it, but still no option. No error in RPT either.

Link to comment
Share on other sites

  On 10/14/2014 at 1:35 AM, Tricks said:

Ok I switched it, but still no option. No error in RPT either.

weird, did you make sure the script is even started from your init.sqf?

if you are not sure you can add a simple debug log message and check that, e.g. at the very bottom of the service_point.sqf file add this line:

diag_log "service point script started";

that text should be printed to your client RPT file if the script is started.

 

note: most admins check the wrong RPT, so make sure to look into the CLIENT file, not the server log :D

Link to comment
Share on other sites

  On 10/14/2014 at 6:17 PM, PcKoPaT said:

What should we do to remove the menu ,rearm horn

Change this line https://github.com/vos/dayz/blob/master/service_point/service_point.sqf#L114 to

			if(_weaponName != "Horn") then { 
				_weapons set [count _weapons, [_x, _weaponName, _turret]];	 
			}; 

UPD: Axe accept my pull request. And github version already have this path.

Link to comment
Share on other sites

  On 10/15/2014 at 4:22 PM, korzhyk said:

 

Change this line https://github.com/vos/dayz/blob/master/service_point/service_point.sqf#L114 to

			if(_weaponName != "Horn") then { 
				_weapons set [count _weapons, [_x, _weaponName, _turret]];	 
			}; 

thanks for the change, i merged your changes into my script so you guys don't need to worry about that anymore. :)

Link to comment
Share on other sites

Not for the service point, we have a script that allows players to make keys for server spawned vehicles, at a cost of course, and to combine keys for their vehicles into a single key. It just seems that it would be more realistic if it were able to be done at a service point instead of anywhere in the world, I'll zip up that script in a bit and attach it

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...