• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

MoveEvent FootBall , automatic. [0.3.6 + 0.4]-Updated-

When tightening the lever, a message appears: "You need 2 players to start the match." Since I'm already 6 players to play on the floors. It also placed 2, nothing works.

I use TFS 0.3.6 and did everything you said, and use your map.

How do I fix this?
 
pitchpos = {fromx = 1730, fromy = 797, tox = 1751, toy = 800, z = 7}, -- here you need to put the x and y from the farest north west sqm of the pitch, to the farest west east sqm in the pitch(including goal)
pitchpos = {fromx = 1730, fromy = 797, tox = 1751, toy = 800, z = 7}, -- here you need to put the x and y from the farest north west sqm of the pitch, to the farest west east sqm in the pitch(including goal)
pitchpos = {fromx = 1730, fromy = 797, tox = 1751, toy = 800, z = 7}, -- here you need to put the x and y from the farest north west sqm of the pitch, to the farest west east sqm in the pitch(including goal)
I DONT UNDESTOOD!!!!!!!!
CAN U UPLOAD A GOOD MAP FOR THIS SYSTEM? BUT A MAP WITH SOME POSITIONS
 
just a doubt
actionid="7072" is for the left goal
actionid="7072" is for the right goal
actionid="7072" = all the field less the goals

right?
 
man i don't know what action id to put to the levers and i don't understand this part D:

XML:
--Position of #TEAM_1# players standing to pull the lever
                              {x = 814, y = 859, z = 6},
						 --- Position of #TEAM_2# players standing to pull the lever
                              {x = 814, y = 860, z = 6}
	                  },
 
Awsome Script, actually works for me, but how do you get it to remove any item but the soccer/football from the field... Any ideas? Also where would you put tile movements id 7072?
 
As requested by killing:

Made football highscores based on this on Znote AAC:
PHP:
<?php require_once 'engine/init.php'; include 'layout/overall/header.php';
$cache = new Cache('engine/cache/soccer');
if ($cache->hasExpired()) {
	$soccer = mysql_select_multi("SELECT `name`, `goals`, `wins`, `total` FROM `players` WHERE `total`>'9' ORDER BY `wins` DESC;");
	$cache->setContent($soccer);
	$cache->save();
} else {
	$soccer = $cache->load();
}
?>
<h1>Football highscores</h1>
<!-- Table structure -->
<table>
	<!-- Table header titles -->
	<tr>
		<td>Name</td>
		<td>Goals</td>
		<td>Wins</td>
		<td>Total</td>
	</tr>
	<!-- Table contents -->
	<?php if ($soccer !== false) { 
		foreach($soccer as $player) {
			?>
			<tr>
				<td><a href="characterprofile.php?name=<?php echo $player['name']; ?>"><?php echo $player['name']; ?></a></td>
				<td><?php echo $player['goals']; ?></td>
				<td><?php echo $player['wins']; ?></td>
				<td><?php echo $player['total']; ?></td>
			</tr>
			<?php 
		}
		} else { ?>
	<tr>
		<td colspan="4">No participants with 10+ games played.</td>
	</tr>
	<?php } ?>
</table>
<?php include 'layout/overall/footer.php'; ?>
 
I will host the map on Dropbox later today so it wont be removed any more.
 
still waiting for the map tho ;p

- - - Updated - - -

ok, so I studied the script and this is how it should be

lever aid = 2275
Team #1 goal AID tiles = 7070
Team #2 goal AID tiles = 7071
the tiles the players should step @ before clicking the lever AID = 7072

- - - Updated - - -

ok, I tested it. it works fine expect that you can use utani hur, utani gran hur and so so u get more speed. anyway to disable that ;p?
 
Back
Top