Signup Now
Results 1 to 2 of 2

Thread: Creature Name

  1. #1
    Banned
    Join Date
    Dec 2013
    Location
    Porto Alegre - RS
    Posts
    524
    Reputation
    61
    Rep Power
    0

    Creature Name

    How to get creature name in X,Y,Z??

  2. #2
    Free User Invalid Name's Avatar
    Join Date
    Dec 2013
    Posts
    14
    Reputation
    10
    Rep Power
    0
    something like this:

    function GetNameInXYZ(x, y, z)
    local Name = 'None'
    foreach creature m 's' do
    if m.posx == x and m.posy == y and m.posz == z then
    Name = m.name
    end
    end
    return Name
    end


    you should've asked on skype lil' friend

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •