mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-15 09:06:08 +00:00
0065cb3970
+Added the possibility to send units to another villages (spy, reinforcement, normal attack and raid) +Added the possibility to set the spying type and the catapult targets +Some changes in the DB
40 lines
1.3 KiB
Smarty
40 lines
1.3 KiB
Smarty
<table id="coords" cellpadding="1" cellspacing="1">
|
|
<tbody>
|
|
<tr>
|
|
<td class="sel">
|
|
<label>
|
|
<input class="radio" name="c" value="2" type="radio" {if !isset($c) || $c == 2}checked="checked"{/if}> {$smarty.const.REINFORCEMENT}
|
|
</label>
|
|
</td>
|
|
|
|
<td class="vil">
|
|
<span>{$smarty.const.VILLAGE}:</span>
|
|
<input class="text" name="targetVillageName" value="{$targetVillageName}" maxlength="20" type="text"></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="sel">
|
|
<label>
|
|
<input class="radio" name="c" value="3" type="radio" {if isset($c) && $c == 3}checked="checked"{/if}> {$smarty.const.NORMALATTACK}
|
|
</label>
|
|
</td>
|
|
<td class="or">{$smarty.const.OR}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="sel">
|
|
<label>
|
|
<input class="radio" name="c" value="4" type="radio" {if isset($c) && $c == 4}checked="checked"{/if}> {$smarty.const.RAID}
|
|
</label>
|
|
</td>
|
|
|
|
<td class="target">
|
|
<span>{$smarty.const.X}:</span>
|
|
<input class="text" name="x" value="{$x}" maxlength="4" type="text">
|
|
<span>{$smarty.const.Y}:</span>
|
|
<input class="text" name="y" value="{$y}" maxlength="4" type="text">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br />
|
|
<button value="prepareUnitsToSend" name="action" id="btn_ok" class="trav_buttons"> {$smarty.const.OK} </button>
|