. . . . .Quote:
And 6.3.1 is the same as 9, too ;)
Just click on the logo of the chattool:Quote:
Found this on chattool.swf
[Only registered and activated users can see links. Click Here To Register...]
Thanks for the advice BP!
Quote:
download link ?:handsdown::handsdown::handsdown:
what ?Quote:
private server
My server (the Black space) based on the Assembly of dark planets, but the build (dark planets )was illegally posted and all the links have been removed I managed to save files and now it I who does not give. And the emulator which is on the screen is my design which I just started, have the vehicle repair, regenrate shield, the movement of the NPC, PET done but with errors and my emulator does not use a database, it is based on Azure EMU V 5.1.Quote:
private server
Try re-coding your emulator, using Azure 5.1 is just pain, it is way too buggy.Quote:
what ?
My server (the Black space) based on the Assembly of dark planets, but the build (dark planets )was illegally posted and all the links have been removed I managed to save files and now it I who does not give. And the emulator which is on the screen is my design which I just started, have the vehicle repair, regenrate shield, the movement of the NPC, PET done but with errors and my emulator does not use a database, it is based on Azure EMU V 5.1.
Oh, Sorry I didn't implement cloak cpu back in 2014. You have to do it, I doubt that thoughQuote:
Hi.Please help.
I have this line in emulator and i buy cpu for cloack but in game no i see cpu and my ship its visible. I change maine.swf to see cpu in bar but no cloack....
In data base no i have table with name INV.
PLEASE HELP!!!
private void Cloak()
{
if (Ship.Config.Cloaks <= 0 || Ship.Cloaked == 1)
{
return;
}
Ship.Cloaked = 1;
Ship.Config.Cloaks -= 1;
foreach (var user in Program.GameManager.GetMap(MapId).GetUsersByUser(U serId))
{
user.Send("0|n|INV|" + UserId + "|" + Ship.Cloaked);
}
Send("0|n|INV|" + UserId + "|" + Ship.Cloaked);
Send("0|A|CPU|C|" + Ship.Config.Cloaks);
}