Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Player information Card


Zopto
 Share

Recommended Posts

I like this Zopto. Have you thought about making a topic with your whole collection in it? I know I have seen quiet a few more tutorials and useful coding from you. keep it up!

Another comment in when I am in game play i do like to know information on other players in my area or my component. So I say this is a very useful code and tutorial.
Link to comment
Share on other sites

Sorry my Fail…
Use there
```
    If frmMain.picPlayerInfo.Visible = True Then
        If myTargetType = TARGET_TYPE_PLAYER And myTarget <> MyIndex Then
      frmMain.lblPlayerName.Caption = Trim(Player(myTarget).Name) & "- Level" & Trim(Player(Index).Level)
      frmMain.charstat(0).Caption = "Str: " & Trim(Player(myTarget).Stat(1))
      frmMain.charstat(1).Caption = "End: " & Trim(Player(myTarget).Stat(2))
      frmMain.charstat(2).Caption = "Int: " & Trim(Player(myTarget).Stat(3))
      frmMain.charstat(3).Caption = "Agi: " & Trim(Player(myTarget).Stat(4))
      frmMain.charstat(4).Caption = "Will: " & Trim(Player(myTarget).Stat(5))
      Else
      frmMain.picPlayerInfo.Visible = False
        AddText "Invalid target.", BrightRed
      End If
    Else
    End If
```
@daxterxx Just PM me

EDIT–-
picPlayerInfo Example with Close
Just Copy/Paste then add to
Close / lblPICard_Click
```
picPlayerInfo.visible = False
```
Now Search
```
    frmMain.picHotbar.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\hotbar.jpg")
```And under it add
```
    frmMain.picPlayerInfo.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\playerinfo.jpg")
```
Now put the playerinfo.jpg to data files\graphics\gui\main\
Link to comment
Share on other sites

  • 9 months later...
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...