What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Me not in current context error

BPAlpha

New Member
Joined
Jan 15, 2010
Messages
594
Reaction score
41
what am i doing wrong ....

Error 3 The name 'Me' does not exist in the current context C:\Users\Alpha\AppData\Local\Temporary Projects\ClassLibrary1\Alpha.cs 76 17 Alpha

sorry im new to all this lol.. ive added references and added files to project folder
 
i have no clue? usually me is me.somethinghere.xx

ie:

ObjectManager.Me.Shapeshift

return Me.GotTarget ? Me.CurrentTarget.Distance : uint.MaxValue - 1;

etc
 
Last edited:
That is a custom class or Plugin error, it means that you did not Define Me anywhere, or MT it. So if you define it, it should work. This is how it should be defined

Code:
private readonly LocalPlayer Me = ObjectManager.Me;
 
Back
Top