build.pl does not create pbo correctly?

BBS||DeadEye

Well-Known Member
Hi all,
I seem to have a problem with the build.pl.
When I execute the following:
Code:
perl build.pl --world mbg_celle2 --instance 1
I get the same pbo in size (about 128Kb) when I execute
Code:
perl build.pl --world mbg_celle2 --instance 1 --with-messaging --with-buildings --with-carepkgs --with-invcust --with-wrecks --channels 0,2,6

The channels are set correctly, but it seems that there is no other difference in the pbo.

The output I get is in the first case:
Code:
INFO: Merging Bliss code into official server
21 File(s) copied
INFO: Creating dayz_server.pbo
cpbo v2.12 by Kegetys <http://www.kegetys.net>
Creating ./tmp/dayz_server
20 files
prefix: z\addons\dayz_server
file 0/20: ./tmp/dayz_server\compile\server_gutObject.sqf (0 KB)
file 1/20: ./tmp/dayz_server\compile\server_onPlayerConnect.sqf (0 KB)
file 2/20: ./tmp/dayz_server\compile\server_onPlayerDisconnect.sqf (1 KB)
file 3/20: ./tmp/dayz_server\compile\server_playerDied.sqf (1 KB)
file 4/20: ./tmp/dayz_server\compile\server_playerLogin.sqf (2 KB)
file 5/20: ./tmp/dayz_server\compile\server_playerSetup.sqf (7 KB)
file 6/20: ./tmp/dayz_server\compile\server_playerStat.sqf (0 KB)
file 7/20: ./tmp/dayz_server\compile\server_playerSync.sqf (7 KB)
file 8/20: ./tmp/dayz_server\compile\server_publishObject.sqf (0 KB)
file 9/20: ./tmp/dayz_server\compile\server_routinePlayerCheck.sqf (0 KB)
file 10/20: ./tmp/dayz_server\compile\server_townDeZombify.sqf (0 KB)
file 11/20: ./tmp/dayz_server\compile\server_townZombify.sqf (1 KB)
file 12/20: ./tmp/dayz_server\compile\server_updateNearbyObjects.sqf (0 KB)
file 13/20: ./tmp/dayz_server\compile\server_updateObject.sqf (3 KB)
file 14/20: ./tmp/dayz_server\compile\server_updatePlayer.sqf (0 KB)
file 15/20: ./tmp/dayz_server\compile\zombie_findOwner.sqf (0 KB)
file 16/20: ./tmp/dayz_server\init\server_functions.sqf (6 KB)
file 17/20: ./tmp/dayz_server\system\server_cleanup.fsm (14 KB)
file 18/20: ./tmp/dayz_server\system\server_monitor.sqf (5 KB)
file 19/20: ./tmp/dayz_server\system\s_fps.sqf (0 KB)
Done.
3 File(s) copied
INFO: Creating dayz_1.mbg_celle2.pbo
cpbo v2.12 by Kegetys <http://www.kegetys.net>
Creating ./tmp/mission_tmp
3 files
file 0/3: ./tmp/mission_tmp\description.ext (2 KB)
file 1/3: ./tmp/mission_tmp\init.sqf (1 KB)
file 2/3: ./tmp/mission_tmp\mission.sqm (122 KB)
Done.
INFO: Build completed successfully!

In the Second case I get:
Code:
INFO: Merging Bliss code into official server
21 File(s) copied
Merging changes for package ./pkg/messaging
Merging changes for package ./pkg/buildings
1 File(s) copied
Merging changes for package ./pkg/carepkgs
3 File(s) copied
Merging changes for package ./pkg/invcust
1 File(s) copied
Merging changes for package ./pkg/wrecks
3 File(s) copied
INFO: Creating dayz_server.pbo
cpbo v2.12 by Kegetys <http://www.kegetys.net>
Creating ./tmp/dayz_server
22 files
prefix: z\addons\dayz_server
file 0/22: ./tmp/dayz_server\compile\fnc_carePkgs.sqf (6 KB)
file 1/22: ./tmp/dayz_server\compile\fnc_wrecks.sqf (5 KB)
file 2/22: ./tmp/dayz_server\compile\server_gutObject.sqf (0 KB)
file 3/22: ./tmp/dayz_server\compile\server_onPlayerConnect.sqf (0 KB)
file 4/22: ./tmp/dayz_server\compile\server_onPlayerDisconnect.sqf (1 KB)
file 5/22: ./tmp/dayz_server\compile\server_playerDied.sqf (1 KB)
file 6/22: ./tmp/dayz_server\compile\server_playerLogin.sqf (3 KB)
file 7/22: ./tmp/dayz_server\compile\server_playerSetup.sqf (7 KB)
file 8/22: ./tmp/dayz_server\compile\server_playerStat.sqf (0 KB)
file 9/22: ./tmp/dayz_server\compile\server_playerSync.sqf (7 KB)
file 10/22: ./tmp/dayz_server\compile\server_publishObject.sqf (0 KB)
file 11/22: ./tmp/dayz_server\compile\server_routinePlayerCheck.sqf (0 KB)
file 12/22: ./tmp/dayz_server\compile\server_townDeZombify.sqf (0 KB)
file 13/22: ./tmp/dayz_server\compile\server_townZombify.sqf (1 KB)
file 14/22: ./tmp/dayz_server\compile\server_updateNearbyObjects.sqf (0 KB)
file 15/22: ./tmp/dayz_server\compile\server_updateObject.sqf (3 KB)
file 16/22: ./tmp/dayz_server\compile\server_updatePlayer.sqf (0 KB)
file 17/22: ./tmp/dayz_server\compile\zombie_findOwner.sqf (0 KB)
file 18/22: ./tmp/dayz_server\init\server_functions.sqf (7 KB)
file 19/22: ./tmp/dayz_server\system\server_cleanup.fsm (15 KB)
file 20/22: ./tmp/dayz_server\system\server_monitor.sqf (7 KB)
file 21/22: ./tmp/dayz_server\system\s_fps.sqf (0 KB)
Done.
3 File(s) copied
Merging changes for package ./mission/messaging
INFO: Creating dayz_1.mbg_celle2.pbo
cpbo v2.12 by Kegetys <http://www.kegetys.net>
Creating ./tmp/mission_tmp
3 files
file 0/3: ./tmp/mission_tmp\description.ext (2 KB)
file 1/3: ./tmp/mission_tmp\init.sqf (1 KB)
file 2/3: ./tmp/mission_tmp\mission.sqm (122 KB)
Done.
INFO: Build completed successfully!


I also looked inside the build.pl, I guess it has something todo with
"Merging world changes into $src\n"
which does not appear in the output...

best regards, DeadEye
 
So I found it. The Mission file is always the same size and the dayz_server.pbo is the one who grows. Also the killmsg parameter was not in the command line.
 
Back
Top