⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmchar.frm

📁 使用vb寫出完美網頁遊戲外掛的原始碼分享
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmChar 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Select Character"
   ClientHeight    =   2220
   ClientLeft      =   5835
   ClientTop       =   4110
   ClientWidth     =   3765
   Icon            =   "frmChar.frx":0000
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2220
   ScaleWidth      =   3765
   Begin VB.ListBox lstChar 
      Appearance      =   0  'Flat
      Height          =   1830
      IntegralHeight  =   0   'False
      Left            =   30
      Sorted          =   -1  'True
      TabIndex        =   0
      Top             =   30
      Width           =   3705
   End
   Begin ygPlus.chameleonButton chbSelect 
      Height          =   315
      Left            =   1500
      TabIndex        =   1
      Top             =   1890
      Width           =   945
      _ExtentX        =   1667
      _ExtentY        =   556
      BTYPE           =   5
      TX              =   "Select"
      ENAB            =   -1  'True
      BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   222
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      COLTYPE         =   1
      FOCUSR          =   -1  'True
      BCOL            =   13160660
      BCOLO           =   13160660
      FCOL            =   0
      FCOLO           =   0
      MCOL            =   12632256
      MPTR            =   1
      MICON           =   "frmChar.frx":058A
      UMCOL           =   -1  'True
      SOFT            =   0   'False
      PICPOS          =   0
      NGREY           =   0   'False
      FX              =   0
      HAND            =   0   'False
      CHECK           =   0   'False
      VALUE           =   0   'False
   End
End
Attribute VB_Name = "frmChar"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub chbSelect_Click()
If lstChar.ListIndex > -1 Then lstChar_DblClick
End Sub

Private Sub lstChar_Click()
If lstChar.ListIndex > -1 Then
    Char = CInt(Left$(lstChar.List(lstChar.ListIndex), InStr(lstChar.List(lstChar.ListIndex), "."))) - 1
    Update_Stats
End If
End Sub

Private Sub lstChar_DblClick()
SendPacket Chr(&HC8) & Chr(&HD1) & Chr(&H8F) & Chr(&H0) & Chr(&HC8) & Chr(&HD1), 1
Char = CInt(Left$(lstChar.List(lstChar.ListIndex), InStr(lstChar.List(lstChar.ListIndex), "."))) - 1
Stat "Select Character [" & LoginChar(Char).Name & " Lv." & LoginChar(Char).Level & "]"
frmMain.txtChar.Text = "Char: " & LoginChar(Char).Name
Update_Stats
Unload Me
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -