[R-DEV]J.F.Leusch69 wrote:you have fi_soldiers in the init, but they are not created yet
That's true.
Anyroad, i replaced soldiers with placeholders (pr_cf_soldier*):
faction_init.con:
Code: Select all
elseIf v_arg2 == "fi"
gameLogic.setTeamName v_arg1 "FI"
gameLogic.setTeamLanguage v_arg1 "English"
gameLogic.setTeamFlag v_arg1 "flag_fi"
gameLogic.setKit v_arg1 0 "fi_officer" "pr_cf_soldier5"
gameLogic.setKit v_arg1 1 "fi_officer_alt" "pr_cf_soldier4"
gameLogic.setKit v_arg1 2 "fi_rifleman" "pr_cf_soldier2"
gameLogic.setKit v_arg1 3 "fi_rifleman_alt" "pr_cf_soldier1"
gameLogic.setKit v_arg1 4 "fi_specialist" "pr_cf_soldier1"
gameLogic.setKit v_arg1 5 "fi_medic" "pr_cf_soldier3"
gameLogic.setKit v_arg1 6 "fi_support" "pr_cf_soldier6"
run spawners/spawners_fi.con
That didn't affect HUD in any way. Btw, atm i'm happy with placeholders (if it's possible to use them) 'cause textures are in the making so i don't see it fruitful to play with copied soldier folders.
[R-DEV]AncientMan wrote:Having no soldiers will show the kits, it will just not allow you to spawn.
Ty AncientMan, that's seems to be the case. So the bug causing kits not to show in HUD menu must be elsewhere.
[R-DEV]AncientMan wrote:Having no mounted faction_init.zip will mean no kits, which gives this error

.
Not only that, but you do not have a serverarchives.con file mounting factions_init.zip (at least none that I can see in the root mod folder, mods/pr_fi/serverarchives.con).
That's obviously true. Sorry to disappoint you, but the serverarchives.con and clientarchives.con (as well as all pristine .957 files) are present in mods root.
They just are not in repository because they are not changed (against .957)
As i see it: it's handy to put only changed files to repo to make it easier to see the changes and to make repo "cleaner" and file count minimal. One's working dir needs anyway to be "initiated" with all .957 files (as well as unpacked objects for build scripts) for local and build procedures to work and as i see it's not wise to put them all in repo but instead only changed files (and of cource excluding unwanted files and filetypes).
If wiser people than me see that somehow unsound, pls feel free to contribute
