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

DepTa

Members
  • Posts

    132
  • Joined

  • Last visited

    Never

Posts posted by DepTa

  1. lol work for me

    > All Client-Side
    > modGlobals
    > At bottom add
    > Code: [Select]
    > Public chaton as boolean
    > Search
    > Code: [Select]
    > Public Sub SetFocusOnChat()
    > Replace the whole sub with these two subs
    > Code: [Select]
    > Public Sub SetFocusOnChat()
    >
    >     If chaton = False Then
    >         SetFocusOnGame
    >         Exit Sub
    >     End If
    >
    >     On Error Resume Next 'prevent RTE5, no way to handle error
    >     frmMain.txtMyChat.Visible = True
    >     frmMain.txtMyChat.SetFocus
    > End Sub
    > Public Sub SetFocusOnGame()
    >
    >     If chaton = True Then
    >         SetFocusOnChat
    >         Exit Sub
    >     End If
    >
    >     On Error Resume Next 'prevent RTE5, no way to handle error
    >     frmMain.txtMyChat.Visible = False
    >     frmMain.picScreen.SetFocus
    > End Sub
    > Now find
    > Code: [Select]
    > If LenB(ChatText) = 0 Then Exit Sub
    > And replace with this
    > Code: [Select]
    > If LenB(ChatText) = 0 Then
    >         If KeyAscii = vbKeyReturn Then
    >             Chaton = Not Chaton
    >             SetFocusOnGame
    >         End If
    >         Exit Sub
    >     End If
    >     If Chaton = False Then Exit Sub
    > Now find
    > Code: [Select]
    > ' Handle when the player presses the return key
    >     If KeyAscii = vbKeyReturn Then
    > and directly under them add
    > Code: [Select]
    > Chaton = False
    >         SetFocusOnGame
    > Now goto frmMain and make txtMyChat invisible
    > Now you can chat with Enter :D

    just put the script was able to work on it?

    and for what his next?
  2. [EO] Alatar's Quest System v1.2

    why at the time of complete installation instructions Server side and client side and after that I was compiling or 'make project' client change icon and can not enter

    this a image

    ![](http://i46.tinypic.com/2w7g4zd.jpg)
×
×
  • Create New...