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

Item around checker

Status
Not open for further replies.

Firedarthvader

New Member
Joined
Nov 13, 2014
Messages
8
Reaction score
0
I got a question:
I want to make an checker that checks for spesific items that are around and makes them apair in the logs with the coords. Like an item radar.
I have no idea were to start.

tnx
 
Code:
     List<DoodadObject> dood = getDoodads();
                foreach(DoodadObject d  in dood)
                {   
                  if(d.name=="SOMETHING 1" || d.name=="SOMETHING 2 " )
                      {
                        Log("-"+d.name +"  x="+ d.X + " y=" + d.Y);
                      }
                }

Something like this , I did not compile
 
Last edited:
I havent looked into it yet, because I was quite busy these last weeks. But it seems this is what I needed. Thanks
 
Status
Not open for further replies.
Back
Top