Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   TBDev (http://www.bvlist.com/forumdisplay.php?f=20)
-   -   how can i know on my tracker if sumone is cheating? (http://www.bvlist.com/showthread.php?t=9292)

firefly007 12th July 2013 21:00

Quote:

Originally Posted by nirbe (Post 41571)
Ok, i will try.

more something, There is H&R mod for TBdev 2009 (or how i can calculate sharing time)?

Have a look @ u232 forums, there's a hit and run hack for 09'

http://forum.u-232.com/index.php/topic,1228.0.html

nirbe 13th July 2013 13:18

Quote:

Originally Posted by firefly007 (Post 41574)
Have a look @ u232 forums, there's a hit and run hack for 09'

http://forum.u-232.com/index.php/topic,1228.0.html

I dont have snatched table..

firefly007 13th July 2013 13:36

Mysql tables?

nirbe 13th July 2013 14:24

Quote:

Originally Posted by firefly007 (Post 41584)
Mysql tables?

Yes, i need to create one?

firefly007 13th July 2013 23:22

Quote:

Originally Posted by nirbe (Post 41585)
Yes, i need to create one?

You need to run the query... (alter Table)

Go to Phpmyadmin => The database in question => Then click on SQL button

Then Paste this in below:

ALTER TABLE `snatched` ADD `hit_and_run` INT(11) NOT NULL;
ALTER TABLE `snatched` ADD `mark_of_cain` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE snatched ADD `finished` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hnrwarn` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hit_and_run_total` INT(9) DEFAULT '0';

Then hit the "GO"

nirbe 14th July 2013 07:20

Quote:

Originally Posted by firefly007 (Post 41586)
You need to run the query... (alter Table)

Go to Phpmyadmin => The database in question => Then click on SQL button

Then Paste this in below:

ALTER TABLE `snatched` ADD `hit_and_run` INT(11) NOT NULL;
ALTER TABLE `snatched` ADD `mark_of_cain` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE snatched ADD `finished` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hnrwarn` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hit_and_run_total` INT(9) DEFAULT '0';

Then hit the "GO"

I know that, but how can i run AFTER TABLE if the table doesn't exist?

wMan 14th July 2013 10:09

Code:

ALTER TABLE `snatched` ADD `hit_and_run` INT(11) NOT NULL;
ALTER TABLE `snatched` ADD `mark_of_cain` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `snatched` ADD `finished` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hnrwarn` enum('yes','no') NOT NULL DEFAULT 'no';
ALTER TABLE `users` ADD `hit_and_run_total` INT(9) DEFAULT '0';

ALLSO INPORT THE FULL SQL BEFORE ADDING THIS

firefly007 14th July 2013 11:44

Quote:

Originally Posted by nirbe (Post 41597)
I know that, but how can i run AFTER TABLE if the table doesn't exist?

Yea! I see what you saying... The snatch table needed does not come with the default Sql as far a I can recall might need to hunt around for it.

nirbe 15th July 2013 10:38

Quote:

Originally Posted by firefly007 (Post 41601)
Yea! I see what you saying... The snatch table needed does not come with the default Sql as far a I can recall might need to hunt around for it.

So where i can find this table?


All times are GMT +2. The time now is 03:38.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.