-
I noted that 3 lumberjacks were working on the same tree..
they keep working yet when the first one brings the trunk to home.
2009-09-13 10:22:08 UTC in Widelands
-
i'm sure that it's not a real issue..
but fernery workers changes icon while working.. (worker-like one and small-greenish one while on the field)
btw i find strange the difference between the normal workers and the builders/farmers image..
i like to thank you all for that cool game that i like a lot much than the old settlers/serf-city
hope to make a donation when i got more money :-)
2009-09-13 10:10:49 UTC in Widelands
-
I noted that 3 lumberjacks were working on the same tree..
they keep working yet when the first one brings the trunk to home.
2009-09-13 10:01:27 UTC in Widelands
-
A little more details,
to access the db i used that code:
define('DB_NAME','dbname');
define('DB_PATH','../../db_path');
$fs = new fSQLEnvironment;
$fs->define_db(DB_NAME, DB_PATH);
$fs->select_db(DB_NAME);
That code was run at the start of each page..
Hope it's right :o.
2009-06-18 08:21:01 UTC in Flat-file SQL
-
Premise:
To reset the database i roughly delete all the db files.. (don't know if it's the right way to do, i don't find drop database example on fsql documentation)
Table creation:
$fsql->query("CREATE TABLE events(
id INT NOT NULL AUTO_INCREMENT,
author VARCHAR(30),
title VARCHAR(30),
clan VARCHAR(30),
suburb VARCHAR(30),
position...
2009-06-18 07:34:31 UTC in Flat-file SQL
-
I'm starting to use fSql and i'm really really happy that someone was supporting a small but very very very useful project like that..
Many times having a db was necessary, but you don't want to spend more money to add db functionality to your web space..
So, thanks for all your work!!!
I got a problem while deleting a single row by id.. anyway i don't got the source code in my hands...
2009-06-18 06:43:23 UTC in Flat-file SQL