Added Role Selection + ClientHook

This commit is contained in:
Nekura
2024-04-07 03:53:53 +02:00
parent 2f34a66cc5
commit f7c2bcfe87
13 changed files with 194 additions and 16 deletions

View File

@@ -7,17 +7,45 @@ body.anim = Sc_MLBODY_STND_000LV_A_31
comm.anim = Sc_comm_body_unfold_female, Sc_headCOM comm.anim = Sc_comm_body_unfold_female, Sc_headCOM
[Package] [Package]
nickname = ge_fighter nickname = ge_fighter_trent
strid_name = 11051 strid_name = 11051
strid_desc = 11551 strid_desc = 11551
ship = ge_fighter ship = ge_fighter
loadout = MP_ge_fighter loadout = MP_ge_fighter
money = 2000 money = 20000
[Package]
nickname = li_freighter_trent
strid_name = 11051
strid_desc = 11551
ship = li_freighter
loadout = MP_li_freighter
money = 20000
[Faction] [Faction]
nickname = new_player nickname = new_player
rep_group = co_ic_grp rep_group = PLAYER_PVP
base = Li01_01_Base base = Li01_01_Base
Package = ge_fighter Package = ge_fighter_trent
Pilot = trent Pilot = trent
[Faction]
nickname = new_player
rep_group = PLAYER_PVP
base = Li01_01_Base
Package = li_freighter_trent
Pilot = trent
[Faction]
nickname = new_player
rep_group = PLAYER_PVE
base = Li01_01_Base
Package = ge_fighter_trent
Pilot = trent
[Faction]
nickname = new_player
rep_group = PLAYER_PVE
base = Li01_01_Base
Package = li_freighter_trent
Pilot = trent

View File

@@ -1,9 +1,12 @@
#Automatically generated. Do not edit! #Automatically generated. Do not edit!
UITextMsgButton SelectShip .305013020833333 -.367520833333333 .3125 .0625 "Ship >" 12301.0000 "<default>" 393254 UITextMsgButton SelectShip .305013020833333 -.367520833333333 .3125 .0625 "Ship >" 12301.0000 "<default>" 393254
UITextMsgButton Back -.62109375 -.367513020833333 .3125 .0625 "< Back" 12300.0000 "<default>" 393257 UITextMsgButton Back -.62109375 -.367513020833333 .3125 .0625 "< Back" 12300.0000 "<default>" 393257
UIRichTextWin Title -.331385416666667 .367520833333333 .709645833333333 5.37083333333332E-02 UIWinObject DataFrame -.334635416666667 .267144097222222 .660807291666667 .537109375 -0.8300 interface\intro\objects\MULTI_charactercreation.cmp
UIWinObject DataFrame -.334635416666667 .267144097222222 .660807291666667 .537109375 -1.0000 interface\intro\objects\MULTI_charactercreation.cmp UIRichTextWin Title -.331385416666667 .280020833333333 .709645833333333 5.37083333333332E-02
UITextEdit CharacterName -8.07291666666667E-02 -.185329861111111 .364583333333333 5.53385416666667E-02 "Stumpo" UITextEdit CharacterName -8.07291666666667E-02 -.215329861111111 .364583333333333 5.53385416666667E-02 "Stumpo"
UIWinDeform BaseCostume -.30859375 .237847222222222 .257161458333333 .478515625 UIWinDeform BaseCostume -.35859375 .237847222222222 .257161458333333 .478515625
UIRichTextWin StartingDesc -6.77083333333334E-02 .236219618055555 .338541666666667 .371636284722222 UIRichTextWin StartingDesc -6.77083333333334E-02 .206219618055555 .338541666666667 .371636284722222
UIRichTextWin NameLabel -6.60807291666667E-02 -.143012152777778 .33203125 .0439453125 UIRichTextWin NameLabel -6.60807291666667E-02 -.183012152777778 .33803125 .0439453125
UICycle CyclePackage -.11 -.025 .42 2.76666666666667E-02 -1.0000 1.0000 0.0000 1.0000 1
UICycle CyclePackage -.11 -.12 .42 2.76666666666667E-02 -1.0000 1.0000 0.0000 1.0000 1

View File

@@ -2596,12 +2596,17 @@ formation = fighters, fighter_guild
; ### MOD Faction Props ### ; ### MOD Faction Props ###
; REM CLAN ; REM CLAN
[FactionProps] [FactionProps]
affiliation = REM_CLAN affiliation = REM_CLAN
legality = lawful legality = lawful
; PLAYER_PVP
[FactionProps]
affiliation = PLAYER_PVP
legality = lawful
; PLAYER_PVE
[FactionProps]
affiliation = PLAYER_PVE
legality = lawful

View File

@@ -83,8 +83,27 @@ equip = contrail01, HpContrail01
equip = contrail01, HpContrail02 equip = contrail01, HpContrail02
equip = DockingLightRedSmall, HpDockLight01 equip = DockingLightRedSmall, HpDockLight01
equip = DockingLightRedSmall, HpDockLight02 equip = DockingLightRedSmall, HpDockLight02
cargo = ge_s_battery_01, 3
cargo = ge_s_repair_01, 3 [Loadout]
nickname = MP_li_freighter
archetype = li_freighter
equip = ge_lfr_engine_01
equip = shield01_mark01_fr, HpShield01
equip = li_freighter_power01
equip = ge_s_scanner_01
equip = ge_s_tractor_01
equip = LargeWhiteSpecial, HpHeadlight
equip = SlowSmallBlue, HpRunningLight01
equip = SlowSmallBlue, HpRunningLight02
equip = SlowSmallBlue, HpRunningLight03
equip = SlowSmallBlue, HpRunningLight04
equip = SlowSmallBlue, HpRunningLight05
equip = SlowSmallBlue, HpRunningLight06
equip = SlowSmallBlue, HpRunningLight07
equip = contrail01, HpContrail01
equip = contrail01, HpContrail02
equip = DockingLightRedSmall, HpDockLight01
equip = DockingLightRedSmall, HpDockLight02
[Loadout] [Loadout]
nickname = co_ge_fighter_loadout01 nickname = co_ge_fighter_loadout01

View File

@@ -3432,3 +3432,125 @@ rep = 1, REM_CLAN
; ### MOD Reps ### ; ### MOD Reps ###
[Group]
nickname = PLAYER_PVP
ids_name = 261353
ids_info = 261353
ids_short_name = 261353
rep = 0, li_n_grp
rep = 0, li_lsf_grp
rep = 0, li_p_grp
rep = 0, br_n_grp
rep = 0, br_p_grp
rep = 0, ku_n_grp
rep = 0, ku_p_grp
rep = 0, rh_n_grp
rep = 0, rh_p_grp
rep = 0, co_alg_grp
rep = 0, co_be_grp
rep = 0, br_m_grp
rep = 0, co_nws_grp
rep = 0, co_hsp_grp
rep = 0, co_ic_grp
rep = 0, co_khc_grp
rep = 0, co_kt_grp
rep = 0, rh_m_grp
rep = 0, co_me_grp
rep = 0, co_ni_grp
rep = 0, co_os_grp
rep = 0, co_rs_grp
rep = 0, co_shi_grp
rep = 0, co_ss_grp
rep = 0, co_ti_grp
rep = 0, co_vr_grp
rep = 0, fc_bd_grp
rep = 0, fc_b_grp
rep = 0, fc_c_grp
rep = 0, fc_fa_grp
rep = 0, fc_g_grp
rep = 0, fc_gc_grp
rep = 0, fc_h_grp
rep = 0, fc_j_grp
rep = 0, fc_lh_grp
rep = 0, fc_lr_grp
rep = 0, fc_lwb_grp
rep = 0, fc_m_grp
rep = 0, fc_ou_grp
rep = 0, fc_rh_grp
rep = 0, fc_or_grp
rep = 0, fc_u_grp
rep = 0, fc_x_grp
rep = 0, gd_gm_grp
rep = 0, fc_uk_grp
rep = -1, fc_n_grp
rep = 0, fc_ln_grp
rep = 0, fc_kn_grp
rep = 0, fc_rn_grp
rep = 0, fc_ouk_grp
rep = 0, fc_q_grp
rep = 0, fc_f_grp
rep = 0, gd_im_grp
rep = 0, gd_z_grp
rep = 0, gd_bh_grp
[Group]
nickname = PLAYER_PVE
ids_name = 261354
ids_info = 261354
ids_short_name = 261354
rep = 0, li_n_grp
rep = 0, li_lsf_grp
rep = 0, li_p_grp
rep = 0, br_n_grp
rep = 0, br_p_grp
rep = 0, ku_n_grp
rep = 0, ku_p_grp
rep = 0, rh_n_grp
rep = 0, rh_p_grp
rep = 0, co_alg_grp
rep = 0, co_be_grp
rep = 0, br_m_grp
rep = 0, co_nws_grp
rep = 0, co_hsp_grp
rep = 0, co_ic_grp
rep = 0, co_khc_grp
rep = 0, co_kt_grp
rep = 0, rh_m_grp
rep = 0, co_me_grp
rep = 0, co_ni_grp
rep = 0, co_os_grp
rep = 0, co_rs_grp
rep = 0, co_shi_grp
rep = 0, co_ss_grp
rep = 0, co_ti_grp
rep = 0, co_vr_grp
rep = 0, fc_bd_grp
rep = 0, fc_b_grp
rep = 0, fc_c_grp
rep = 0, fc_fa_grp
rep = 0, fc_g_grp
rep = 0, fc_gc_grp
rep = 0, fc_h_grp
rep = 0, fc_j_grp
rep = 0, fc_lh_grp
rep = 0, fc_lr_grp
rep = 0, fc_lwb_grp
rep = 0, fc_m_grp
rep = 0, fc_ou_grp
rep = 0, fc_rh_grp
rep = 0, fc_or_grp
rep = 0, fc_u_grp
rep = 0, fc_x_grp
rep = 0, gd_gm_grp
rep = 0, fc_uk_grp
rep = -1, fc_n_grp
rep = 0, fc_ln_grp
rep = 0, fc_kn_grp
rep = 0, fc_rn_grp
rep = 0, fc_ouk_grp
rep = 0, fc_q_grp
rep = 0, fc_f_grp
rep = 0, gd_im_grp
rep = 0, gd_z_grp
rep = 0, gd_bh_grp

Binary file not shown.

BIN
EXE/FLSharp.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -39,6 +39,7 @@ HudFacility.dll
HudTarget.dll HudTarget.dll
HudStatus.dll HudStatus.dll
NoNavMap.dll NoNavMap.dll
FLSharp.dll
;REM ;REM
REM-Client.dll REM-Client.dll

Binary file not shown.

Binary file not shown.

Binary file not shown.