Jump to content

phaicm

Members
  • Posts

    2
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

phaicm's Achievements

Poring

Poring (1/15)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. RGB Emulation does not work for RO. Something is wrong with your drivers that RO is not detecting. Try reinstalling graphics drivers and restart PC.
  2. local actors = GetActors() local num = 0 local actors_list = "" for i,v in ipairs(actors) do if (v ~= OwnerID) and (v ~= MyID) then num = num + 1 id = GetV(V_MERTYPE, v) if actors_list == "" then actors_list = "" else actors_list = actors_list .. " \n" end local x, y = GetV(V_POSITION, v) actors_list = actors_list .. id .. "," .. x .. "," .. y end end You're ID is id = GetV(V_MERTYPE, v) Change V_MERTYPE to V_TARGET also the "v" in ipairs(actors) is the actor value already
×
×
  • Create New...