DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ EquipCharacter()

void MissionBase::EquipCharacter ( MenuDefaultCharacterData char_data)
inlineprotected

Spawns character equip from received data. Checks validity against config, randomizes if invalid value and config array not empty.

См. определение в файле missionServer.c строка 498

499 {
500 int slot_ID;
501 string attachment_type;
502 for (int i = 0; i < DefaultCharacterCreationMethods.GetAttachmentSlotsArray().Count(); i++)
503 {
504 slot_ID = DefaultCharacterCreationMethods.GetAttachmentSlotsArray().Get(i);
505 attachment_type = "";
506 if (m_RespawnMode != GameConstants.RESPAWN_MODE_CUSTOM || !char_data.GetAttachmentMap().Find(slot_ID,attachment_type) || !VerifyAttachmentType(slot_ID,attachment_type)) //todo insert verification fn here
507 {
508 //randomize
509 if (DefaultCharacterCreationMethods.GetConfigArrayCountFromSlotID(slot_ID) > 0)
510 {
511 attachment_type = DefaultCharacterCreationMethods.GetConfigAttachmentTypes(slot_ID).GetRandomElement();
512 }
513 else //undefined, moving on
514 continue;
515 }
516
517 if (attachment_type != "")
518 {
519 m_player.GetInventory().CreateAttachmentEx(attachment_type,slot_ID);
520 }
521 }
522
524 }
@ Count
Определения RandomGeneratorSyncManager.c:8
map< int, string > GetAttachmentMap()
Определения gameplay.c:1125
int m_RespawnMode
Определения missionServer.c:14
bool VerifyAttachmentType(int slot_ID, string attachment_type)
Определения missionServer.c:531
void StartingEquipSetup(PlayerBase player, bool clothesChosen)
can be overriden to manually set up starting equip. 'clothesChosen' is legacy parameter,...
Определения missionServer.c:527
PlayerBase m_player
Определения missionServer.c:54

Перекрестные ссылки Count, MenuDefaultCharacterData::GetAttachmentMap(), m_player, m_RespawnMode, GameConstants::RESPAWN_MODE_CUSTOM, StartingEquipSetup() и VerifyAttachmentType().

Используется в OnClientNewEvent().