Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] selector

Status
Not open for further replies.
Newbie Spellweaver
Joined
Oct 20, 2006
Messages
51
Reaction score
0
can anyone tell me how to fix the error of the selector guy on coqnuer online!!!


how do i fix!!! i need visual studio c but what do i do!!!
 
Last edited by a moderator:
Junior Spellweaver
Joined
Jan 19, 2006
Messages
102
Reaction score
0
Re: selector

1.) Open server source in C#
2.) Press F5
3.) Press F6

Play and have fun !
 
Junior Spellweaver
Joined
Apr 4, 2007
Messages
155
Reaction score
13
Re: selector

I posted the fix on the other place, I suppose it belongs here too.

Open up PacketBuilder.cs, search for SpawnEntity(Character Player).

Search for this.
Code:
//Armor / Garment
            int itemidInt2 = 0;
            Get = Player.Equip_items[8];
            if (Get[0] != 0)
            {
                itemidInt2 = Get[0];
            }
            else
            {
                Get = Player.Equip_items[2];
                if (Get[0] != 0)
                {
                    itemidInt2 = Get[0];
                }
            }
Replace it with this.
Code:
int itemidInt2 = 0;
if (Player.equip_items[8] != null && Player.equip_items[8][0] != 0)
     itemidInt2 = Player.equip_items[8][0];
else
     itemidInt2 = Player.equip_items[2][0];

As well, I'd like to mention that there are a few errors in character creation as well. You might wanna check out CreateCharacter in BackEndDB.cs.
 
Newbie Spellweaver
Joined
Oct 20, 2006
Messages
51
Reaction score
0
hmm i press f5 f6 and it doesnt do anything help log in msn
 
Status
Not open for further replies.
Back
Top