Announcement

Collapse
No announcement yet.

display some text hover player

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    display some text hover player

    Hello
    i need to know if its possible ?. (i thinks it is) cause i was cherching all night on wiki but didn't not found any thinks
    i want to display string on head of all players
    thanks

    #2
    Maybe u can try it with the "CreateText3D()" function ?

    Comment


      #3
      Ho thanks .. i will try i didn't now how why didn't see that function

      Comment


        #4
        if some one have a better idea to do that without spamming with timer and more efficiant thanks


        PHP Code:
        CreateTimer(function()
        for 
        _v in pairs(GetAllPlayers()) do
        local posXposYposZ GetPlayerLocation(v)
        if 
        posX ~= PlayerPseudoPosX then
        PlayerPseudoPosX 
        posX
        DestroyText3D
        (PlayerPseudoID)
        PlayerPseudoID CreateText3D("TEST"20posXposYposZ 1300,0,0)
        end
        end
        end
        250

        Comment


          #5
          https://dev.playonset.com/wiki/SetText3DAttached

          Comment

          Working...
          X