Official 5165 FAQ/Question thread

12/29/2010 03:55 denominator#1771
Code:
Error	1	Control cannot fall through from one case label ('case 1060120:') to another	C:\rikardo updated\Game\Character.cs	6277	21	NewestCOServer
Am trying to add something but I forgot what this error is and how to rectify it >.< Also it`s an idea that I have so that it autometscrolls when chars are in metzone :) No errors apart from that >.< Still debating on adding it for VIPs only or whether to allow it as standard for all chars (I know what I`m doing with that lol)

Hmmm I stopped that error but what I wanted it to do it actually didn`t do anything >.> I get 10 mets and it doesn`t scroll them up >.< I added it to character.cs and well I am not sure if it should or would work and why it isn`t? Here is what I have.

Code:
#region AutoScrollMet
                    case 1:
                           {
                               if (InventoryContains(1088001, 10))
                               
                                   for (int i = 0; i < 10; i++)
                                       RemoveItem(NextItem(1088001));
                                   AddItem(720027);
                                   break;
                               
                            }
                    #endregion
12/29/2010 04:21 Syst3m_W1z4rd#1772
Quote:
Originally Posted by denominator View Post
Code:
Error	1	Control cannot fall through from one case label ('case 1060120:') to another	C:\rikardo updated\Game\Character.cs	6277	21	NewestCOServer
Am trying to add something but I forgot what this error is and how to rectify it >.< Also it`s an idea that I have so that it autometscrolls when chars are in metzone :) No errors apart from that >.< Still debating on adding it for VIPs only or whether to allow it as standard for all chars (I know what I`m doing with that lol)
You forgot to add a break inside your case. Make sure it's not inside a check or something.

Code:
                case 1060120:
                    {
                        break;
                    }
Code:
#region AutoScrollMet
                    case 1:
                           {
                               if (InventoryContains(1088001, 10))
                               {
                                   for (int i = 0; i < 10; i++)
                                       RemoveItem(NextItem(1088001));
                                   AddItem(720027);
                               }
                                   break;
                               
                            }
                    #endregion
12/29/2010 04:26 denominator#1773
Hmm well I have 9 mets in my inv because I drop one but when I pick it up it doesn`t scroll them?
12/29/2010 04:31 Syst3m_W1z4rd#1774
if (InventoryContains(1088001, 10))
^defines that you need to have 10 mets.

Also the case needs to be send some way.
Else it will not work.
12/29/2010 04:35 denominator#1775
Yup I know it defines I have 10 mets >.< I took it partly from the NPC that scrolls the mets then converted it to accept in character.cs lol.

How do you mean it needs to be sent? I need to put some sort of check like the expball checks?

Basically I want it to "send" the info when the 10th meteor is picked up from the ground, so it checks the inv constantly for the 10 mets and will not scroll them until a 10th has been added to the inv.
12/29/2010 05:50 hippie#1776
i need help i looked throught this thread and i cant find a fix for this
Code:
Error	1	} expected	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1217	38	NewestCOServer
Error	2	Invalid token 'case' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1247	29	NewestCOServer
Error	3	Invalid token '==' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1249	49	NewestCOServer
Error	4	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1251	51	NewestCOServer
Error	5	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1251	66	NewestCOServer
Error	6	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1252	51	NewestCOServer
Error	7	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1252	67	NewestCOServer
Error	8	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1253	51	NewestCOServer
Error	9	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1253	67	NewestCOServer
Error	10	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1254	51	NewestCOServer
Error	11	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1254	70	NewestCOServer
Error	12	Invalid token ')' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1254	79	NewestCOServer
Error	13	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1255	51	NewestCOServer
Error	14	Invalid token '(' in class, struct, or interface member declaration	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1255	69	NewestCOServer
Error	15	A namespace cannot directly contain members such as fields or methods	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1257	37	NewestCOServer
Error	16	A namespace cannot directly contain members such as fields or methods	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1277	29	NewestCOServer
Error	17	Expected class, delegate, enum, interface, or struct	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1340	66	NewestCOServer
Error	18	Type or namespace definition, or end-of-file expected	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1346	49	NewestCOServer
Error	19	} expected	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1217	38	NewestCOServer
Error	20	The name 'LinkBack' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1133	41	NewestCOServer
Error	21	The name 'Text' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1136	41	NewestCOServer
Error	22	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1136	114	NewestCOServer
Error	23	The name 'Link' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1137	41	NewestCOServer
Error	24	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1137	59	NewestCOServer
Error	25	The name 'Link' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1138	41	NewestCOServer
Error	26	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1138	60	NewestCOServer
Error	27	The name 'Link' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1139	41	NewestCOServer
Error	28	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1139	59	NewestCOServer
Error	29	The name 'Link' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1140	41	NewestCOServer
Error	30	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1140	56	NewestCOServer
Error	31	The name 'Link' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1141	41	NewestCOServer
Error	32	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1141	58	NewestCOServer
Error	33	The name 'Link' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1142	41	NewestCOServer
Error	34	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1142	70	NewestCOServer
Error	35	The name 'Face' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1143	41	NewestCOServer
Error	36	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1143	50	NewestCOServer
Error	37	The name 'End' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1144	41	NewestCOServer
Error	38	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1144	45	NewestCOServer
Error	39	The name 'LinkBack' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1146	46	NewestCOServer
Error	40	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1148	88	NewestCOServer
Error	41	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1149	88	NewestCOServer
Error	42	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1150	88	NewestCOServer
Error	43	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1151	88	NewestCOServer
Error	44	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1152	88	NewestCOServer
Error	45	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1153	88	NewestCOServer
Error	46	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1154	88	NewestCOServer
Error	47	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1155	88	NewestCOServer
Error	48	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1156	88	NewestCOServer
Error	49	The name 'LinkBack' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1159	46	NewestCOServer
Error	50	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1162	88	NewestCOServer
Error	51	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1163	88	NewestCOServer
Error	52	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1164	88	NewestCOServer
Error	53	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1165	88	NewestCOServer
Error	54	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1166	88	NewestCOServer
Error	55	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1167	88	NewestCOServer
Error	56	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1168	88	NewestCOServer
Error	57	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1169	88	NewestCOServer
Error	58	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1170	88	NewestCOServer
Error	59	The name 'LinkBack' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1174	46	NewestCOServer
Error	60	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1177	88	NewestCOServer
Error	61	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1178	88	NewestCOServer
Error	62	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1179	88	NewestCOServer
Error	63	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1180	88	NewestCOServer
Error	64	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1181	88	NewestCOServer
Error	65	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1182	88	NewestCOServer
Error	66	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1183	88	NewestCOServer
Error	67	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1184	88	NewestCOServer
Error	68	The name 'LinkBack' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1188	46	NewestCOServer
Error	69	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1191	86	NewestCOServer
Error	70	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1192	86	NewestCOServer
Error	71	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1193	86	NewestCOServer
Error	72	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1194	86	NewestCOServer
Error	73	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1195	86	NewestCOServer
Error	74	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1196	86	NewestCOServer
Error	75	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1197	86	NewestCOServer
Error	76	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1198	86	NewestCOServer
Error	77	The name 'LinkBack' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1201	46	NewestCOServer
Error	78	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1204	88	NewestCOServer
Error	79	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1205	88	NewestCOServer
Error	80	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1206	88	NewestCOServer
Error	81	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1207	88	NewestCOServer
Error	82	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1208	88	NewestCOServer
Error	83	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1209	88	NewestCOServer
Error	84	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1210	88	NewestCOServer
Error	85	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1211	88	NewestCOServer
Error	86	The name 'CSocket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1212	88	NewestCOServer
Error	87	The type or namespace name 'ClientSocket' could not be found (are you missing a using directive or an assembly reference?)	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1217	166	NewestCOServer
Error	88	The type or namespace name 'Struct' could not be found (are you missing a using directive or an assembly reference?)	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1219	1	NewestCOServer
Error	89	The type or namespace name 'Struct' could not be found (are you missing a using directive or an assembly reference?)	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1219	28	NewestCOServer
Error	90	The name 'Nano' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1236	12	NewestCOServer
Error	91	'NewestCOServer.Database' does not contain a definition for 'Database'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1237	25	NewestCOServer
Error	92	The name 'Nano' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1240	12	NewestCOServer
Error	93	'NewestCOServer.Database' does not contain a definition for 'Database'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1241	20	NewestCOServer
Error	94	The name 'ConquerPacket' does not exist in the current context	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1245	14	NewestCOServer
Error	95	The type or namespace name 'Control' could not be found (are you missing a using directive or an assembly reference?)	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1249	41	NewestCOServer
Error	96	The type name 'AddSend' does not exist in the type 'System.GC'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1251	44	NewestCOServer
Error	97	'NewestCOServer.Packets.NPCSay(string)' is a 'method' but is used like a 'type'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1251	60	NewestCOServer
Error	98	The type name 'AddSend' does not exist in the type 'System.GC'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1252	44	NewestCOServer
Error	99	'NewestCOServer.Packets.NPCLink(string, byte)' is a 'method' but is used like a 'type'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1252	60	NewestCOServer
Error	100	The type name 'AddSend' does not exist in the type 'System.GC'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1253	44	NewestCOServer
Error	101	'NewestCOServer.Packets.NPCLink(string, byte)' is a 'method' but is used like a 'type'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1253	60	NewestCOServer
Error	102	The type name 'AddSend' does not exist in the type 'System.GC'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1254	44	NewestCOServer
Error	103	'NewestCOServer.Packets.NPCSetFace(ushort)' is a 'method' but is used like a 'type'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1254	60	NewestCOServer
Error	104	The type or namespace name 'N' could not be found (are you missing a using directive or an assembly reference?)	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1254	71	NewestCOServer
Error	105	The type name 'AddSend' does not exist in the type 'System.GC'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1255	44	NewestCOServer
Error	106	'NewestCOServer.Packets.NPCFinish()' is a 'method' but is used like a 'type'	D:\DOWNLOADs\Fixed Source\Fixed Source\rikardo updated\PacketHandling\NPCDialog.cs	1255	60	NewestCOServer
12/29/2010 07:00 denominator#1777
Ok hippie do a search in NPCDialog.cs for CSocket and delete that NPC and that should sort the problem out, the NPC could be converted for this source but it is just as easy to delete that particular NPC :)
12/29/2010 18:12 hippie#1778
thank you thank you:handsdown::handsdown::handsdown: you are my hero now i can finally start playing wif this :D
12/29/2010 18:23 denominator#1779
Lol you`re very welcome :)
12/29/2010 20:37 [GM]#1780
iam getting a weird error when i try to log in with my character:

PInvokeStackImbalance was detected
Message: A call to PInvoke function 'NewestCOServer!NewestCOServer.Native::memcpy' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.

here is a pic:

[Only registered and activated users can see links. Click Here To Register...]
12/29/2010 20:44 denominator#1781
Are you running 64 bit computer? If so have you checked the thread that describes how to change the source to work with 64bit comp?

I had a similar error the other day but I can`t remember why >.< I`m pretty sure in my case it was either adding/removing something from the source/OldCODB?
12/29/2010 20:53 [GM]#1782
no iam not using 64bit comp, and i didn't touch the OLDCODB folder
12/29/2010 21:24 denominator#1783
No idea then sorry, that`s the error you get when trying to run the source on a 64 bit comp without converting it to 64 bit lol. Or at least it throws the error in the exact same place.
12/30/2010 00:54 .Beatz#1784
Easiest idea is to run the program directly from the OldCODB fodler and not debug it, I cant remember exactly why you get this error but it will run fine running from OldCODB
01/02/2011 06:35 Corey1111#1785
How do you stop the client from trying to automatically autopatch?

LMK Thanks :)