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

Player Info Card


tickleu
 Share

Recommended Posts

Some players might like to view other players information. Such as there level, stats, and there currently wearing items. So without any hesitation lets begin.

*The currently wearing items feature dosent work yet. Im going to finish it and post it. If someone else knows how, then leave a post and ill add it in

First Download this picture and put it in your MAIN graphics folder.
![](http://i41.tinypic.com/11kl1n8.jpg)

**CLIENT SIDE**
go to modText, find "Public Sub DrawPlayerName(ByVal Index As Long)" and under
```
Dim i As Long
```paste this

```
frmMain.picPlayerInfo.Visible = True
  frmMain.lblPlayerName.Caption = Trim$(Player(Index).Name)
  frmMain.lblPlayerName = Trim$(Player(Index).Name) & " - Level " & Trim$(Player(Index).Level)
  frmMain.charstat(0).Caption = Trim$(Player(Index).Stat(1))
  frmMain.charstat(1).Caption = Trim$(Player(Index).Stat(2))
  frmMain.charstat(2).Caption = Trim$(Player(Index).Stat(3))
  frmMain.charstat(3).Caption = Trim$(Player(Index).Stat(4))
  frmMain.charstat(4).Caption = Trim$(Player(Index).Stat(5))

```
Next go to frmMain and make a picture box called picPlayerInfo. Make the background image the picture you downloaded above. Make one label called lblPlayerName and make 1 other label called charstat. Copy and paste it a few times till you get 4 of them.

Viola your done. Im sorry this is so quick and sloppy but I have to go atm.
Link to comment
Share on other sites

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...