v26RP client help

Mango2735

The Sexy One.
Oct 13, 2010
288
3
hello, Im using the habborp emulator. And everytime i get on the client it says error please contact player support, and then d/c's.

I looked on the log and this error was there:
Code:
System.IndexOutOfRangeException: Cannot find column 0.[/FONT][/SIZE]
[SIZE=15px][FONT=Georgia]   at System.Data.DataColumnCollection.get_Item(Int32 index)[/FONT][/SIZE]
[SIZE=15px][FONT=Georgia]   at System.Data.DataRow.get_Item(Int32 columnIndex)[/FONT][/SIZE]
[SIZE=15px][FONT=Georgia]   at Holo.Virtual.Users.virtualUser.processPacket(String currentPacket) in C:\Users\Gabby\Downloads\Emulator\Source\Virtual\Users\virtualUser.cs:line 602[/FONT][/SIZE]
[SIZE=15px][FONT=Georgia]   at Holo.Virtual.Users.virtualUser.dataArrival(IAsyncResult iAr) in C:\Users\Gabby\Downloads\Emulator\Source\Virtual\Users\virtualUser.cs:line 461[/FONT][/SIZE]
[SIZE=15px][FONT=Georgia]

Please Help
 

Mango2735

The Sexy One.
Oct 13, 2010
288
3
But it does that for every other test emu i use also. 
I think its the _Username part in this code, but I still need help.. please.

Code:
                            this.userID = myID;
                            DataRow dRow;
                            using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
                            {
                                dRow = dbClient.getRow("SELECT name,figure,sex,mission,rank,job,vip,gang,gang_rank,visibility,noob,ach_timeon,wanted,teamid,x,y,inroom,expert,expert_calls,ipaddress_last,hidden_staff,forum_name,forum_post_count,turftime FROM users WHERE id = '" + this.userID + "'");
                             
                            }
                            _Username = Convert.ToString(dRow[0]);
                            _Figure = Convert.ToString(dRow[1]);
                            _Sex = Convert.ToChar(dRow[2]);
                            _Mission = Convert.ToString(dRow[3]);
                            _Rank = Convert.ToByte(dRow[4]);
                            _UsersJob = Convert.ToInt32(dRow[5]);
                            _gang = Convert.ToInt32(dRow[7]);
                            _wantedtime = 0;
                            _Bribe = null;
                            oneway = 0;
                            _clicked = false;
                            _AttackedBy = 0;
                            _Invite = true;
                            _Vest = 0;
                            _Weapon = 0;
                            DisableTrading = false;
                            WithdrawAmount = 0;
                            WantsAccount = false;
                            PetDead = false;
                            PetDeadTime = 0;
 
Help please ...?>
 

Users who are viewing this thread

Top