Added optional Classnames for Service Point Pos.

- Added optional Classnames for Service Point Pos
- Some Cleanups and Script optimization
This commit is contained in:
He-Man 2017-04-01 16:06:03 +02:00 committed by GitHub
parent a84326d446
commit 9d558083c2

View File

@ -1,11 +1,11 @@
class CfgServicePoint {
class Altis {
ServicePoints[] = {
ServicePoints[] = { // Array of coords for ServicePoints
{13325,14477,0}
};
};
class Tanoa {
ServicePoints[] = {
ServicePoints[] = { // Array of coords for ServicePoints
/*
{2157.79,3477.65,0},
{11731.5,3125.95,0},
@ -19,11 +19,17 @@ class CfgServicePoint {
*/
};
};
class Chernarus {
class Chernarus { // Array of coords for ServicePoints
ServicePoints[] = {
};
};
ServicePointClasses[] = { // Array of Classnames, where also are ServicePoints
// "Land_Pillar_Pier_F",
// "Land_CarService_F",
// "Land_fs_feed_F",
// "Land_fs_roof_F"
};
ServicePointDist = 40;
refuel_updateInterval = 1;
refuel_amount = 0.1;
@ -245,4 +251,4 @@ class CfgServicePoint {
}
}
};
};
};