@extends('index') @section('content')
You can accept missions and view the status of your accepted missions here. You can also finish completed missions to make space for new missions. You will receive a reward for a mission when you finish it. You can activate a maximum of 3 missions, of which a maximum of 2 can have the same target. You can finish a maximum of 2 missions per day. Everything above the value feeds on your concentration and performance, meaning you need the power of Hellstones. If one of your missions fails, you have to finish it anyway, before accepting a new mission. However, you can make accepted missions disappear from your list by using Hellstones. New missions that you can then accept are announced every 24 hours.
Overview:
Target: @if($mission->type == \Database\Models\UserMissions::TYPE_HUMAN_HUNT) Successful man hunts @endif ({{$mission->progress}} / {{$mission->count}}) |
Reward: @if($mission->frag > 0){{$mission->frag}} {{fragment_image_tag()}} @endif @if($mission->ap > 0){{$mission->ap}} {{action_point_image_tag()}} @endif @if($mission->heal > 0)Healing: {{$mission->heal}}% @endif{{prettyNumber($mission->gold)}} {{gold_image_tag()}} |
@if(!$mission->accepted && $total_active < 5 && $types[$mission->type]['canAccept']) | @elseif($mission->progress == $mission->count && $finished_count < 5 && $mission->status == 0) @endif
Conditions:
@if($mission->time > 0)
Within {{$mission->time}}:00:00 |
Status: @if($mission->status > 0) @if($mission->status == 1) Finished (Completed) @endif @if($mission->status == 2) Finished (Failed) @endif @else @if($mission->accepted) Active @elseif($total_active < 5 && $types[$mission->type]['canAccept']) Open @else Closed @endif @endif |
@if($mission->accepted && $mission->status == 0) | @endif