Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
This was working fine until the most recent update
case "add":
{
int id = m.GetInt(0);
string username = m.GetString(1);
Player p = new Player(id, username);
p.Physics = world.Players[p.ID]; //Problem with this line
/*
An exception of type 'System.Collections.Generic.KeyNotFoundException' occurred in mscorlib.dll but was not handled in user code
Additional information: The given key was not present in the dictionary.
*/
}
Anyone know why? or how to fix?
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Have you checked so userid and username exists?
Offline
I think you should verify the path where the new Player is add on world.Players
Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.
I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.
Everybody edits, but some edit more than others
Offline
Have you checked so userid and username exists?
Yes, both exist
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
This was working fine until the most recent update
case "add": { int id = m.GetInt(0); string username = m.GetString(1); Player p = new Player(id, username); p.Physics = world.Players[p.ID]; //Problem with this line /* An exception of type 'System.Collections.Generic.KeyNotFoundException' occurred in mscorlib.dll but was not handled in user code Additional information: The given key was not present in the dictionary. */ }
Anyone know why? or how to fix?
I'll be honest, don't really know why it doesn't work...
but like Zumza said, did you make the world.Players dictionary add the id and username values before p.Physics line?
Offline
Koya wrote:This was working fine until the most recent update
case "add": { int id = m.GetInt(0); string username = m.GetString(1); Player p = new Player(id, username); p.Physics = world.Players[p.ID]; //Problem with this line /* An exception of type 'System.Collections.Generic.KeyNotFoundException' occurred in mscorlib.dll but was not handled in user code Additional information: The given key was not present in the dictionary. */ }
Anyone know why? or how to fix?
I'll be honest, don't really know why it doesn't work...
but like Zumza said, did you make the world.Players dictionary add the id and username values before p.Physics line?
Yes, it all worked fine before the update - so I'm guessing that the update messed around with the add message (which it did, class removal) but I haven't got a clue how to fix it.
// m.GetInt(0 ); = ID
// m.GetString(1); = Name
// m.GetInt(2); = Face
// m.GetInt(3); = X
// m.GetInt(4); = Y
// m.GetBoolean(5); = isGod
// m.GetBoolean(6); = isMod
// m.GetBoolean(7); = canChat
// m.GetInt(8); = Coins
// m.GetInt(9); = BlueCoins
// m.GetString(10); = Friends
// m.GetBoolean(11); = isClubMember
// m.GetBoolean(12); = isInGuardianMode
^Thanks to Jesse
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Does nobody else have this error or know why it has popped up?
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
// m.GetString(10); = Friends
What does this mean? I thought that was a boolean. (Too lazy to check atm)
Offline
Offline
id, username, p
output:
3 squadfsalpha ProgramName.Program+Player
4 squadfsbeta ProgramName.Program+Player
1 squadfs ProgramName.Program+Player
3 squadfsalpha ProgramName.Program+Player
4 squadfsbeta ProgramName.Program+Player
5 squadfsgamma ProgramName.Program+Player
6 squadfsdelta ProgramName.Program+Player
7 squadfsepsilon ProgramName.Program+Player
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Koya, you could make your life easier by using Add (if im wrong you surely know what i mean)
if (!world.Players.ContainsKey(m.GetInt(0)) (somethin like dat)
world.Players.Add(m.GetInt(0), m.GetString(1))
If that doesn't work, try putting below Player p:
MessageBox.Show("Values Got", m.GetInt(0).ToString() + " and the value is " + m.GetString(1));
Offline
is p.Physics declared?
if you can read this....good for you
Offline
Found the error (thanks to Jesse), it's with EEPhysics - needs updating
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
[ Started around 1743841775.7692 - Generated in 0.090 seconds, 10 queries executed - Memory usage: 1.56 MiB (Peak: 1.73 MiB) ]