DarkBlizz

Game On => STARCRAFT II: WINGS OF LIBERTY => General Discussion => Topic started by: Serutan on December 21, 2010, 02:50:09 PM

Title: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on December 21, 2010, 02:50:09 PM
Hi,
After the news, i search who develop this project.  ::)
And i found them. 8)
Two links and two dates.
This friday, 24/12/2010, they issue the database
And the 31/12, their emu.
Links by MP.

I'm French, sorry  ;)

Example of their changelog
- Achievements now available and editable.
- Replay system working.
- Statiscs panel working.
- Login available now.
- Friend add system available.
- Friend chat available.
- Create user accounts.
- Game search available (but not playable).
- Create ADMIN and GM accounts.
- Simple Server updated.
- Single Player archievements saves now on Multiplayer Profile.
- New ONLY-STAFF Chat Channel available.
- Fixed Login Bugs.
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on December 21, 2010, 03:09:05 PM
Which guys are you talking about?
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on December 22, 2010, 07:04:32 AM
I prefer not divulge their web-adress or their name 9 days before the official publication of their bnet emu...
Or PM me ...
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on December 22, 2010, 12:53:28 PM
Well considering they themselves made posts about it publically on a public forum, that there is no need to be kept secret from what they already made public.
The alleged group and their site is located at http://private-net.tk/  and the author made posts on http://ac-web.org/forums/showthread.php?t=102817.   
Noting by the site and then that sudden post about a emulator, I don't know how legitimate it really is.   And we all know of the past fakes, so when I see it, I'll believe it ;)
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on December 22, 2010, 01:27:58 PM
they have posted in one forum, with our, two public post ....
I <3 Spain now ^^
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: darkrib on December 23, 2010, 03:54:22 AM
31th of December... The day , of the REVOLUTION...

Sounds awesome, maybe ill buy that game after all...
I dont know if its true, i trusted in code-gen, even gave
them a beta-key and nothing turned out....
But if it really happens... ^^
Havent got any Words for it.
Thx 4 sharing the links n info...
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on December 23, 2010, 07:58:56 AM
Quote :
---------------------
WARNING!
In the next hours , our website "www.private-net.tk" will be down for maintenance reasons , when we come back (in... 2hours) our new website are available.
Community Forums unavailable , but coming soon.

----------------------
So we will see if it's a fake .... And tomorow the database <3 ..
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on December 23, 2010, 11:16:15 AM
Site up !! All go www.private-net.tk tomorow!!!!
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: darkrib on December 25, 2010, 03:00:52 AM
Well,
Site up n Database released.
I've already downloaded it. Can anyone tell from the database if its real?
thx
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: blejdaq on December 25, 2010, 09:27:12 AM
from a short analysis:
- it's a database of 9 empty tables each with 5 - 10 fields, this would require max. 10 minutes to design and create
- this database can in no way serve as a backend for battle.net nor starcraft 2 server emulator, basic auth fields are missing, basic unit/structures info is missing (for example unit construction time, structure hp/shields)

together with theatrical release dates, poor web design and bad english it looks like a big humbug, but let's see on 31th

my hope is pointing toward Myst's german friends and their sc2 server hosting in russia

merry christmas :)
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on December 25, 2010, 12:09:29 PM
Yeh humbug lol. 
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: darkrib on December 29, 2010, 02:55:45 AM
Looks like someone managed to retrieve the data from the .frm files:

CREATE SCHEMA `pnet`;
USE `pnet`;

CREATE TABLE `accounts` (
`id` bigint(20) DEFAULT NULL,
`powers` bigint(20) DEFAULT NULL,
`username` bigint(20) DEFAULT NULL,
`password` bigint(20) DEFAULT NULL,
`e-mail` bigint(20) DEFAULT NULL,
`last-connection` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `achievements` (
`id` bigint(20) DEFAULT NULL,
`requirement` bigint(20) DEFAULT NULL,
`description` tinytext,
`title` bigint(20) DEFAULT NULL,
`reward` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `avatar_profiles` (
`id` bigint(20) DEFAULT NULL,
`file` text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `characters` (
`id` bigint(20) NOT NULL,
`name` bigint(20) NOT NULL,
`createdate` bigint(20) NOT NULL,
`lastconnection` bigint(20) NOT NULL,
`friendlist` text NOT NULL,
`spstarted` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `newspanel` (
`id` bigint(20) DEFAULT NULL,
`show` bigint(20) DEFAULT NULL,
`title` bigint(20) DEFAULT NULL,
`description` longtext,
`showonlyforGM` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `profiles` (
`account_id` bigint(20) DEFAULT NULL,
`last-played` bigint(20) DEFAULT NULL,
`last-connection` bigint(20) DEFAULT NULL,
`last-race-played` bigint(20) DEFAULT NULL,
`wins` bigint(20) DEFAULT NULL,
`loses` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `serverinfo` (
`id` bigint(20) DEFAULT NULL,
`key` bigint(20) DEFAULT NULL,
`servername` tinytext,
`max-users` bigint(20) DEFAULT NULL,
`max-users-in-league` bigint(20) DEFAULT NULL,
`show` bigint(20) DEFAULT NULL,
`ip/DNS` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `structures` (
`id` bigint(20) NOT NULL,
`name` bigint(20) NOT NULL,
`unit1` bigint(20) NOT NULL,
`unit2` bigint(20) NOT NULL,
`unit3` bigint(20) NOT NULL,
`unit4` bigint(20) NOT NULL,
`unit5` bigint(20) NOT NULL,
`enhacement1` bigint(20) NOT NULL,
`enhacement2` bigint(20) NOT NULL,
`enhacement3` bigint(20) NOT NULL,
`enhacement4` bigint(20) NOT NULL,
`enhacement5` bigint(20) NOT NULL,
`mineralcost` bigint(20) DEFAULT NULL,
`gascost` bigint(20) DEFAULT NULL,
`limit+` bigint(20) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `units` (
`id` bigint(20) NOT NULL,
`name` bigint(20) NOT NULL,
`race` bigint(20) NOT NULL,
`health` bigint(20) NOT NULL,
`energy` bigint(20) NOT NULL,
`shield` bigint(20) NOT NULL,
`damage` bigint(20) NOT NULL,
`speed` bigint(20) NOT NULL,
`air` bigint(20) NOT NULL,
`mineralcost` bigint(20) NOT NULL,
`gascost` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;


Not done by me, but nice though ^^...
Doesnt look very promissing to me, so ill be waiting for the 31. for them to prove their emulator.
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: aceyot on December 29, 2010, 07:08:42 AM
its only creating tables too short info to be legit..

on 31st will see if its real or not
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: blejdaq on December 29, 2010, 08:13:24 AM
i started to be pessimist after seeing 'username', 'password' and units names declared as bigint(20) ;-)
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: aceyot on December 29, 2010, 11:18:47 AM
maybe the want us to use numbers on username and passwords.

no pk on the db.

i wish myst post some info on his friends work..
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on December 30, 2010, 01:08:51 PM
heh, my friend got lazy and hasn't worked on it since :P   Little by little though he's doing something.  We discussed this private.net thing and it does seem fishy, then again we'll see what happens tomorrow.  I suggest you all scan the downloads given by that site before you run anything.
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: aceyot on December 30, 2010, 07:33:01 PM
private-net just move the date... no screens as of now.. makes me wonder
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: darkrib on December 31, 2010, 03:03:24 AM
Releasedate moved to the 4th of January...
Officially theyre fixing bugs n stuff...
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on January 04, 2011, 02:55:38 PM
04/01 21H
No emu ...   :'(
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on January 04, 2011, 02:58:41 PM
knew they were a fake
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: lolpolice675 on January 04, 2011, 11:31:22 PM
yeah I put in too much hope into this one... should have paid my friend to write one for me...

although the website's source code and design was a bit shady to start with...

but they still haven't released the emu yet so I might be wrong
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: mahaj on January 05, 2011, 12:56:30 PM
what is "download database" on this web ?
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: chelo2010 on January 12, 2011, 11:05:07 PM
Today January 13th, even the website still says for 31 December, this project is still ongoing or have already disappeared?   :'( :'(  :(  :(
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on January 13, 2011, 12:57:51 AM
It's fake, don't bother with it
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on January 13, 2011, 12:53:40 PM
@Myst
News from Russian ?
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on January 13, 2011, 01:29:01 PM
he's not Russian, just the plan was to have the Lan Mod on Russian servers.  And looks like he got sidetracked making hacks for other games like League of Legends or something :P
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on January 16, 2011, 12:53:36 PM
A link ?
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Myst on January 16, 2011, 02:34:07 PM
http://www.darkblizz.org  Any legit news about it, I'll report on it
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Serutan on January 16, 2011, 03:39:17 PM
:P
Title: Re: Starcraft II LAN news ( with bnet 2.0 EMU )
Post by: Kerrigan^^ on July 20, 2011, 12:02:53 PM
That sounds great.  :)