Topic: rebuilt mods for BMAX v1.20

i rebuilt and repackaged the mods for BMAX v1.20

Re: rebuilt mods for BMAX v1.20

Are there any tutorials for this gman?

Re: rebuilt mods for BMAX v1.20

Re: rebuilt mods for BMAX v1.20

Thank you gman, I really appreciate it.

Re: rebuilt mods for BMAX v1.20

unfortunately i didnt get to it last night.  to help me with the samples, are you fluent in the SQL language?

Re: rebuilt mods for BMAX v1.20

No unfortunately not, I can only do SQL to home use..

But I can say that I'm really enjoying your mod, I've made a highscore server and client in-game. The server handles the SQL and it's really easy with this mod.

By the way, how would one go about using the CREATE TABLE command in MySQL? No matter what I try, executenonquery() or execute(), it just won't work. It's the only thing I'm missing from my highscore thingie smile

I use the following query:

        Local query$ = "CREATE TABLE `level"+levelid+"` (`rank` bigint(20) Not Null Default '0', `name` varchar(50) Not Null Default '', `time` Float Not Null Default '0', `score` Int(11) Not Null Default '0', `ip` varchar(32) Not Null Default '', PRIMARY KEY  (`rank`)) ENGINE=MyISAM Default CHARSET=latin1;"