Video
Readme
Challenge Rewards
Daily, weekly and monthly quests with rewards.
Workshop
3243160043 - Challenge Rewards UI
Rewards
- Item (eg.
ITEM_363
) - Vehicle (eg.
VEHICLE_93
) - In-game currency (eg.
MONEY_1000
) - Experience (eg.
XP_200
)
Quest Types
- KILLS_ZOMBIES_NORMAL - Kill zombies
- KILLS_ZOMBIES_MEGA - Kill mega zombies
- KILLS_PLAYERS - Kill players
- KILLS_ANIMALS - Kill animals
- FOUND_FISHES - Catch fishes
- ARENA_WINS - Win arena matches
- FOUND_REPUTATION - Gain reputation
Commands
- /challenges - Displays challenges UI
Configuration
<?xml version="1.0" encoding="utf-8"?>
<ChallengeRewardsConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<MessageColor>yellow</MessageColor>
<ConnectionString>Server=127.0.0.1;Database=unturned;Uid=root;Password=Password123;</ConnectionString>
<ChallengesTableName>Challenges</ChallengesTableName>
<ChallengeQuestsTableName>ChallengeQuests</ChallengeQuestsTableName>
<EffectId>8430</EffectId>
<AllowDuplicateQuestTypes>false</AllowDuplicateQuestTypes>
<GiveRewardOnComplete>false</GiveRewardOnComplete>
<Challenges>
<ChallengeModel ChallengeName="daily" ChallengePublicName="Daily" ChallengeDurationHours="24" QuestsAmount="3">
<ChallengeQuests>
<ChallengeQuestModel QuestType="Kills_Zombies_Normal" Target="10" Reward="EXPERIENCE_200" />
<ChallengeQuestModel QuestType="Kills_Players" Target="2" Reward="ITEM_363" />
<ChallengeQuestModel QuestType="Found_Items" Target="8" Reward="VEHICLE_93" />
<ChallengeQuestModel QuestType="Kills_Animals" Target="3" Reward="ITEM_1364" />
</ChallengeQuests>
</ChallengeModel>
<ChallengeModel ChallengeName="weekly" ChallengePublicName="Weekly" ChallengeDurationHours="168" QuestsAmount="2">
<ChallengeQuests>
<ChallengeQuestModel QuestType="Kills_Zombies_Normal" Target="20" Reward="EXPERIENCE_200" />
<ChallengeQuestModel QuestType="Kills_Players" Target="5" Reward="ITEM_363" />
<ChallengeQuestModel QuestType="Found_Items" Target="15" Reward="VEHICLE_93" />
<ChallengeQuestModel QuestType="Kills_Animals" Target="5" Reward="ITEM_1364" />
</ChallengeQuests>
</ChallengeModel>
<ChallengeModel ChallengeName="monthly" ChallengePublicName="Monthly" ChallengeDurationHours="720" QuestsAmount="1">
<ChallengeQuests>
<ChallengeQuestModel QuestType="Kills_Zombies_Normal" Target="30" Reward="EXPERIENCE_200" />
<ChallengeQuestModel QuestType="Kills_Players" Target="15" Reward="ITEM_363" />
<ChallengeQuestModel QuestType="Found_Items" Target="25" Reward="VEHICLE_93" />
<ChallengeQuestModel QuestType="Kills_Animals" Target="8" Reward="ITEM_1364" />
</ChallengeQuests>
</ChallengeModel>
</Challenges>
</ChallengeRewardsConfiguration>
Translations
<?xml version="1.0" encoding="utf-8"?>
<Translations xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Translation Id="FinishChallenge" Value="You finished quest of {0} challenge!" />
<Translation Id="ReceiveExperience" Value="You received {0} experience for completing quest!" />
<Translation Id="ReceiveMoney" Value="You received {0} money for completing quest!" />
<Translation Id="ReceiveItem" Value="You received {0} item for completing quest!" />
<Translation Id="ReceiveVehicle" Value="You received {0} vehicle for completing quest!" />
<Translation Id="MoneyReward" Value="Reward: {0} credits" />
<Translation Id="ItemReward" Value="Reward: {0}" />
<Translation Id="VehicleReward" Value="Reward: {0}" />
<Translation Id="ExperienceReward" Value="Reward: {0} experience" />
<Translation Id="NoChallenges" Value="You don't have any challenge" />
<Translation Id="UI_Header" Value="Challenges" />
<Translation Id="UI_Next" Value="Next" />
<Translation Id="UI_Prev" Value="Prev" />
<Translation Id="UI_Close" Value="Close" />
<Translation Id="UI_QuestProgress" Value="{0}/{1}" />
<Translation Id="UI_QuestCompleted" Value="Completed" />
<Translation Id="UI_QuestClaim" Value="Claim" />
<Translation Id="UI_Page" Value="{0}/{1}" />
<Translation Id="KILLS_ZOMBIES_NORMAL" Value="Kill Zombies" />
<Translation Id="KILLS_PLAYERS" Value="Kill Players" />
<Translation Id="FOUND_ITEMS" Value="Find Items" />
<Translation Id="FOUND_RESOURCES" Value="Find Resources" />
<Translation Id="FOUND_EXPERIENCE" Value="Find Experience" />
<Translation Id="KILLS_ZOMBIES_MEGA" Value="Kill Mega Zombies" />
<Translation Id="DEATHS_PLAYERS" Value="Die" />
<Translation Id="KILLS_ANIMALS" Value="Kill Animals" />
<Translation Id="FOUND_CRAFTS" Value="Find Craftings" />
<Translation Id="FOUND_FISHES" Value="Catch Fishes" />
<Translation Id="FOUND_PLANTS" Value="Find Plants" />
<Translation Id="HEADSHOTS" Value="Hit Headshots" />
<Translation Id="ARENA_WINS" Value="Win Arenas" />
<Translation Id="FOUND_BUILDABLES" Value="Find Buildables" />
<Translation Id="FOUND_THROWABLES" Value="Find Throwables" />
<Translation Id="FOUND_REPUTATION" Value="Gain Reputation" />
</Translations>