Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bot tutorial
#12
Hallo,

also milos was du hier verbreitest ist leider nicht ganz richtig. Mit
Code:
UPDATE villages SET main = main + 1 WHERE userid = $idresult
würdest du bei jedem Dorf des spielers mit der ID $idresult das Hauptgebäude um eins erhöhen.

Ach dieser Teil ist mir rätselhaft:
PHP Code:
mysql_query ("UPDATE villages SET main = main + 1 WHERE userid = 2");
create_village(2,'D2zA',random); 

Erst mal etwas "bauen", und dann ein Dorf erstellen? Komische Logik...

Die Gebäudestufenabfrage machst du so:
PHP Code:
$result mysql_query("SELECT * FROM villages WHERE userid = ".$botid);
while (
$village mysql_fetch_assoc($result) {
  
// hier kannste jetzte für jedes dorf etwas anstellen, $village enthält einen Array mit allen nötigen infos, wie zB ein gebäude $village["main"] oder die punktezahl $village["points"]


Oder geziehlt:
PHP Code:
$result mysql_query("SELECT * FROM villages WHERE id = ".$dorfid);
$village mysql_fetch_assoc($result);

// wieder ein array mit den entsprechenden daten, zB:
echo "In Dorf #".$dorfid." ist das Hauptgebäude auf ".$village["main"]; 
Reply


Messages In This Thread
Bot tutorial - by szepi - 11.02.2009, 14:12
RE: Bot tutorial - by benji889 - 11.02.2009, 14:58
RE: Bot tutorial - by emoser - 11.02.2009, 15:28
RE: Bot tutorial - by szepi - 11.02.2009, 15:38
RE: Bot tutorial - by emoser - 11.02.2009, 17:42
RE: Bot tutorial - by benji889 - 11.02.2009, 20:42
RE: Bot tutorial - by agrafix - 11.02.2009, 23:08
RE: Bot tutorial - by szepi - 12.02.2009, 20:53
RE: Bot tutorial - by Milu2K - 13.02.2009, 14:59
RE: Bot tutorial - by iNk - 12.02.2009, 21:35
RE: Bot tutorial - by -superking- - 13.02.2009, 13:04
RE: Bot tutorial - by agrafix - 13.02.2009, 15:45
RE: Bot tutorial - by szepi - 13.02.2009, 17:04
RE: Bot tutorial - by Milu2K - 13.02.2009, 17:30
RE: Bot tutorial - by Mister Jojo - 14.02.2009, 08:43
RE: Bot tutorial - by Milu2K - 14.02.2009, 09:22
RE: Bot tutorial - by szepi - 14.02.2009, 12:10
RE: Bot tutorial - by Milu2K - 14.02.2009, 12:43
RE: Bot tutorial - by Ephelian - 14.02.2009, 20:00
RE: Bot tutorial - by Milu2K - 14.02.2009, 20:04
RE: Bot tutorial - by Ephelian - 14.02.2009, 20:56
RE: Bot tutorial - by Milu2K - 14.02.2009, 21:00
RE: Bot tutorial - by szepi - 15.02.2009, 08:52
RE: Bot tutorial - by HuGoB0Zz - 15.02.2009, 09:43
RE: Bot tutorial - by agrafix - 15.02.2009, 11:26
RE: Bot tutorial - by Ephelian - 15.02.2009, 16:43
RE: Bot tutorial - by Agamendon - 15.02.2009, 16:58



Users browsing this thread: 2 Guest(s)