Strang Code On C# .... Frist Time To See it !

11/19/2012 22:26 meshoshow#1
I got a now Source its gonna be ok and working good !!

But i want to edit some thing on it but i have found some problem Like !!


case 0x56e46:
CS$4$0003 = npcRequest.OptionID;
if (CS$4$0003 > 30)
{
switch (CS$4$0003)
{
case 100:
ــــــــــــــــــــــــــــــــــــــــــــــــــ ــــــــــــــــــــــــــــــــــــــــــــــــــ ــــــــــــــــــــــــــــــــــــــ


C# Reading This Code Error I think This C# am using doesn't contain this code ( $ )
Is That Cuz i should use C# 2012 ??
am using 2010 !!
11/19/2012 22:31 _DreadNought_#2
That's reflected code.

It wont work.

anyway

Code:
case 0x56e46:
byte b= npcRequest.OptionID;
if (b > 30)
{
switch (b)
{
case 100:
11/19/2012 22:46 meshoshow#3
ok what this code mean CS$4$0002 ??

How can i know this code !! to repair it ???

or how can i reflected this bin by the Correct way ??
11/19/2012 22:59 _DreadNought_#4
Quote:
Originally Posted by meshoshow View Post
ok what this code mean CS$4$0002 ??

How can i know this code !! to repair it ???

or how can i reflected this bin by the Correct way ??
That's simply how reflected code can come out.

I gave you the code, it looked liked it was just a byte variable.

Use the code I provided, common sense please.
11/19/2012 23:42 meshoshow#5
some thing like that code !!
this.Replies.Add(<>g__initLocal1);


Its Wrong too !!

I want the correct way to reflect it if u know !!
11/20/2012 00:54 Ultimation#6
lol...