okay i've done that i no longer get that error, but i do get this one? i think it was when i followed @Damien's previous tutorial on how to put Rooms in navigator categoriesCopy and paste a command that you have and rename it to "JerkOffCommand.cs"
Open Visual Studio and go to where the file is
Delete it.
Fixed.
What happened here is whomever touched the emulator last didn't delete the file via VS they deleted it via File Explorer. So, now VS thinks it exists and the computer says it doesn't.
Try adding another } to the end of it, I think that’s your issue.there is no line 105
Add it on 106at the end of the one on line 105?
Nothing to do with that. You need to understand topics in order to debug them. Lets break this down.oh shit, is it maybe because i'm not turning off my emu before debugging?
....Nothing to do with that. You need to understand topics in order to debug them. Lets break this down.
Think of a socket like a room in a hotel. This room has certain properties. 1. Hotel Suite Number, ways to get there (elevator or stairs), and room within the suite (master suite or kids suite) .
A socket relates in the same way, it has an IP Address (hotel suite number), ways to get there (protocol - udp or tcp), and port (room - master bedroom or kids room). - The emulator even says this itself ! "Only one usage of each socket address (protocol, address, port) is allowed"
Here something is wrong, i.e one of the parameters (protcol, address, port) is not satisfied.
I assume that the port is not satisfied. In other words, you want the master bedroom in Suite 104 but its already taken so you cant get there. So what are you options? Find a new room (port) in that suite to use. If that returns the same error, check the ip address, otherwise the issue is the protocol.
That is how you debug this problem overall.
Goodluck
you're making it into something more complicated than it needs to be lmfaooooNothing to do with that. You need to understand topics in order to debug them. Lets break this down.
Think of a socket like a room in a hotel. This room has certain properties. 1. Hotel Suite Number, ways to get there (elevator or stairs), and room within the suite (master suite or kids suite) .
A socket relates in the same way, it has an IP Address (hotel suite number), ways to get there (protocol - udp or tcp), and port (room - master bedroom or kids room). - The emulator even says this itself ! "Only one usage of each socket address (protocol, address, port) is allowed"
Here something is wrong, i.e one of the parameters (protcol, address, port) is not satisfied.
I assume that the port is not satisfied. In other words, you want the master bedroom in Suite 104 but its already taken so you cant get there. So what are you options? Find a new room (port) in that suite to use. If that returns the same error, check the ip address, otherwise the issue is the protocol.
That is how you debug this problem overall.
Goodluck
....
He's not closing the emulator that's running and blocking that port when he tries to debug another emulator occurrence and you say has nothing to do with that??
Take it as you'd like, my analogy simply explained how a port was in use and that was a possibility for the problem at hand. The context for your situation was not important to me (nevertheless, my mistake I should've read between the lines that one emu open blocked a port for another - but this becomes obvious after reading my explanation).you're making it into something more complicated than it needs to be lmfaoooo
i honestly appreciate it but being fairly new to all of this isn't good considering i have no idea what you're talking aboutTake it as you'd like, my analogy simply explained how a port was in use and that was a possibility for the problem at hand. The context for your situation was not important to me (nevertheless, my mistake I should've read between the lines that one emu open blocked a port for another - but this becomes obvious after reading my explanation).
I focused on helping you understand to solve problems not small intricate details, otherwise no real learning would be done.
Goodluck regardless,