• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

sorry please delete

Napisalem dla was news system! Jestem pro ;(
Code:
<?
	$q = mysql_query("SELECT * FROM `news` ORDER BY `id` DESC LIMIT 3");
	while ($news = mysql_fetch_array($q))
		$main_content .= $news['content']."<hr/>";
?>

Reput PLXPLXPLXLXPx

#Edit:
Btw. pozdro dla Gesiora, ktory meczy baze jak serwer socketami liste przesyla:
Code:
	if(sendPlayers)
	{
		std::stringstream ss;
		for(AutoList<Player>::listiterator it = Player::listPlayer.list.begin(); it != Player::listPlayer.list.end(); ++it)
		{
			if(!it->second->isInGhostMode())
			        ss << it->second->getName() << "," << it->second->getVocationId() << "," << it->second->getLevel() << ";";
		}

		xmlNodeSetContent(p, (const xmlChar*)ss.str().c_str());
	}
 
Last edited:
Back
Top