Private Server Info and Support Thread

10/12/2013 12:29 lokalit#61
Why i cant logon to map?
10/12/2013 21:50 sword_gold#62
Hi Requi, I tried your emulator but it says an error on MySQL, can you tell me because I get this?


10/12/2013 22:52 nckrnckr#63
Hello,
my server has EMP, ISH and SMB
but only EMP works
because
else if (packetHeader.StartsWith("S"))
covers all
What should I do to run the SMB and ISH?
10/12/2013 23:13 Requi#64
Quote:
Originally Posted by sword_gold View Post
Hi Requi, I tried your emulator but it says an error on MySQL, can you tell me because I get this?


app.ini
Delete password.
Check if databasename is right.
Quote:
Originally Posted by nckrnckr View Post
Hello,
my server has EMP, ISH and SMB
but only EMP works
because
else if (packetHeader.StartsWith("S"))
covers all
What should I do to run the SMB and ISH?
If you click on ISH, the Emulator gets the Packet from the Client. Check which is it.
Then:
elseif(packetHeader.StartsWith("S"))
{
if(subHeader.StartsWith("EMP")) //Need to create variable subHeader which checks, what comes after the packetHeader.
and so on....
]
10/12/2013 23:27 nckrnckr#65
Quote:
Originally Posted by Requi View Post
app.ini
Delete password.
Check if databasename is right.


If you click on ISH, the Emulator gets the Packet from the Client. Check which is it.
Then:
elseif(packetHeader.StartsWith("S"))
{
if(subHeader.StartsWith("EMP")) //Need to create variable subHeader which checks, what comes after the packetHeader.
and so on....
]
they all take the same suite of problems

[Only registered and activated users can see links. Click Here To Register...]

[Only registered and activated users can see links. Click Here To Register...]

so it only works EMP
10/13/2013 00:00 Requi#66
There is the solution man.
There is:
if (packetSubHeader.StartsWith("EMP"))
{
.......
}
//then write this:
elseif(packetSubHeader.StartsWith("ISH"))
{
nearly same code for ISH like EMP
}
elseif(just like ISH and EMP))
{
...
}
10/13/2013 00:46 nckrnckr#67
Quote:
Originally Posted by Requi View Post
There is the solution man.
There is:
if (packetSubHeader.StartsWith("EMP"))
{
.......
}
//then write this:
elseif(packetSubHeader.StartsWith("ISH"))
{
nearly same code for ISH like EMP
}
elseif(just like ISH and EMP))
{
...
}
my problem fixed

EMP
SMB
ISH
working :)

EDİT: ELA (energy leech) with which you run this package ?
10/13/2013 03:12 sword_gold#68
Quote:
Originally Posted by Requi View Post
app.ini
Delete password.
Check if databasename is right.


If you click on ISH, the Emulator gets the Packet from the Client. Check which is it.
Then:
elseif(packetHeader.StartsWith("S"))
{
if(subHeader.StartsWith("EMP")) //Need to create variable subHeader which checks, what comes after the packetHeader.
and so on....
]
Worked, but then will not let me attack the aliens, here I leave a picture, sorry for the inconvenience. I try to reboot and gives the same error, just change the final numbers:

From client u: 28
From client u: 34
From client or 7

10/13/2013 03:14 Lifestyler.#69
Thang you bro its much better now.
10/13/2013 03:28 Requi#70
Quote:
Originally Posted by sword_gold View Post
Worked, but then will not let me attack the aliens, here I leave a picture, sorry for the inconvenience. I try to reboot and gives the same error, just change the final numbers:

From client u: 28
From client u: 34
From client or 7

The attack system is a whole fail in the newest version of azure.
u|NUMBER stands for choosing a "item" in the quickslotbar.

And whats your exactly problem?
10/13/2013 03:51 sword_gold#71
Quote:
Originally Posted by Requi View Post
The attack system is a whole fail in the newest version of azure.
u|NUMBER stands for choosing a "item" in the quickslotbar.

And whats your exactly problem?
I press CTRL or from the bar directly pressed UCB-100 ammo to attack, but not attack.

I use the default emulator azure, and when I press CTRL or when I select the UCB-100 ammo, if attacked, just very soft.
10/13/2013 14:47 killer boss#72
hello ,

i work into emulator but i search title packet =)

Thx for your reponse

Good Bye
10/13/2013 18:23 sami37#73
Quote:
Originally Posted by sword_gold View Post
I press CTRL or from the bar directly pressed UCB-100 ammo to attack, but not attack.

I use the default emulator azure, and when I press CTRL or when I select the UCB-100 ammo, if attacked, just very soft.
You need to recode a attack system (bullet part), because actually the system attack only count if you got UCB-100 ammo, them you need to check global ammo
10/13/2013 18:36 sword_gold#74
Quote:
Originally Posted by sami37 View Post
You need to recode a attack system (bullet part), because actually the system attack only count if you got UCB-100 ammo, them you need to check global ammo
I picked up some boxes to have UCB-100 and did not result, then use SAB ammo and still does not attack.
10/13/2013 19:16 sami37#75
Quote:
Originally Posted by sword_gold View Post
I picked up some boxes to have UCB-100 and did not result, then use SAB ammo and still does not attack.
I am doing it like this

Code:
string[] bullet1 = Ship.bullet.Split(new Char[] { '|' });
            // LCB-10(x1)|MCB-25(x2)|MCB-50(x3)|UCB-100(x4)|SAB-50(roba escudo)|RSB-75(x5)
            uint LCB10 = Convert.ToUInt32(bullet1[0]);
            uint MCB25 = Convert.ToUInt32(bullet1[1]);
            uint MCB50 = Convert.ToUInt32(bullet1[2]);
            uint UCB100 = Convert.ToUInt32(bullet1[3]);
            uint SAB50 = Convert.ToUInt32(bullet1[4]);
            uint RSB75 = Convert.ToUInt32(bullet1[5]);
            uint totalbullet = LCB10 + MCB25 + MCB50 + UCB100 + SAB50 + RSB75;

            if (this.destroyedClass)
            {
                return;
            }
            uint _userId = this.Ship.selectedUserId;

            if (this.Ship.isAttacking == false || _userId == 0)
            {
            }
            else if (totalbullet < 15)
            {
                this.Ship.isAttacking = false;
                if (!AvisedB)
                {
                    AvisedB = true;
                    this.Send("0|W|L|1");
                }
            }