diff --git a/Templates/movement.tpl b/Templates/movement.tpl
index c25ab17a..4dfcdd29 100644
--- a/Templates/movement.tpl
+++ b/Templates/movement.tpl
@@ -4,12 +4,13 @@
## --------------------------------------------------------------------------- ##
## Filename movement.tpl ##
## Developed by: Dzoki ##
+## Updated by: Shadow ##
## License: TravianX Project ##
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
## ##
#################################################################################
-$aantal = (count($database->getMovement(4,$village->wid,1))+count($database->getMovement(3,$village->wid,1))+count($database->getMovement(3,$village->wid,0))+count($database->getMovement(7,$village->wid,1))-count($database->getMovement(8,$village->wid,1))-count($database->getMovement(9,$village->wid,0)));
+$aantal = (count($database->getMovement(4,$village->wid,1))+count($database->getMovement(3,$village->wid,1))+count($database->getMovement(3,$village->wid,0))+count($database->getMovement(7,$village->wid,1))+count($database->getMovement(5,$village->wid,0))+count($database->getMovement(6,$village->wid,0))-count($database->getMovement(8,$village->wid,1))-count($database->getMovement(9,$village->wid,0)));
if($aantal > 0){
echo '
| '.TROOP_MOVEMENTS.' |
';
@@ -129,4 +130,44 @@ if($lala > 0){
echo ' » |
'.$lala.' '.$short.' in '.$generator->getTimeFormat(min($NextArrival3)-time()).' '.HOURS.' |
';
$timer += 1;
-}
\ No newline at end of file
+}
+
+/* Found NEW VILLAGE by Shadow */
+
+$aantal = count($database->getMovement(5,$village->wid,0));
+$aantal2 = $database->getMovement(5,$village->wid,0);
+if($aantal > 0){
+ if(!empty($NextArrival5)) { reset($NextArrival5); }
+ foreach($aantal2 as $receive) {
+ $action = 'att3';
+ $aclass = 'a3';
+ $title = ''.FOUNDNEWVILLAGE.'';
+ $short = ''.NEWVILLAGE.'';
+ $NextArrival5[] = $receive['endtime'];
+ }
+
+ echo ' » |
+ '.$aantal.' '.$short.' '.$generator->getTimeFormat($receive['endtime']-time()).' '.HOURS.' |
';
+ $timer += 1;
+
+}
+
+/* Attacks on Oasis (to my oasis) by Shadow */
+
+$aantal = count($database->getMovement(6,$village->wid,0));
+$aantal2 = $database->getMovement(6,$village->wid,0);
+if($aantal > 0){
+ if(!empty($NextArrival6)) { reset($NextArrival6); }
+ foreach($aantal2 as $receive) {
+ $action = 'att3';
+ $aclass = 'a1';
+ $title = ''.OASISATTACK.'';
+ $short = ''.OASISATTACKS.'';
+ $NextArrival6[] = $receive['endtime'];
+ }
+
+ echo ' » |
+ '.$aantal.' '.$short.' '.$generator->getTimeFormat($receive['endtime']-time()).' '.HOURS.' |
';
+ $timer += 1;
+
+}