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

ownerscape

Members
  • Posts

    34
  • Joined

  • Last visited

    Never

ownerscape's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. so basically I have a button beside my chat box so I can test this out before I replace it all. which looks like this. ``` Private Sub ReportBtn_Click() 'frmReportPlayer.Visible = True frmLoginLobby.Visible = True End Sub ``` it opens the "beta" login lobby. ![](http://i453.photobucket.com/albums/qq256/nickyboy304/stuff.png) and the code is here. ``` Option Explicit Dim GameName As String Dim ClientOutDated As String Dim GameVersion As Integer Dim ServerVersion As Integer Private Sub Form_Load() GameVersion = "1.0" ServerVersion = "1.0" GameName = "Fallen AngelX" Me.Caption = "Login Lobby - Welcome To " & GameName End Sub Private Sub Login_Click() ClientOutDated = "Error - Client out dated!" ' If GameVersion.vaule Is Not ServerVersion Then ' Call MsgBox("Your Client seems to be outdated, Please Update it! " & vbOKOnly, ClientOutDated) ' End If frmLoginLobby.Visible = False frmStable.Visible = True End Sub Private Sub txtChat_GotFocus() On Error Resume Next frmLoginLobby.txtMyTextBox.SetFocus End Sub Private Sub chkSound_Click() Call WriteINI("CONFIG", "Sound", chkSound.value, App.Path & "\Config.ini") End Sub Private Sub chkBubbleBar_Click() Call WriteINI("CONFIG", "SpeechBubbles", chkBubbleBar.value, App.Path & "\Config.ini") End Sub Private Sub chkNpcBar_Click() Call WriteINI("CONFIG", "NPCBar", chkNpcBar.value, App.Path & "\Config.ini") End Sub Private Sub chkNpcDamage_Click() Call WriteINI("CONFIG", "NPCDamage", chkNpcDamage.value, App.Path & "\Config.ini") End Sub Private Sub chkNpcName_Click() Call WriteINI("CONFIG", "NPCName", chkNpcName.value, App.Path & "\Config.ini") End Sub Private Sub chkPlayerBar_Click() Call WriteINI("CONFIG", "PlayerBar", chkPlayerBar.value, App.Path & "\Config.ini") End Sub Private Sub chkPlayerDamage_Click() Call WriteINI("CONFIG", "PlayerDamage", chkPlayerDamage.value, App.Path & "\Config.ini") End Sub Private Sub chkAutoScroll_Click() Call WriteINI("CONFIG", "AutoScroll", chkAutoScroll.value, App.Path & "\Config.ini") End Sub Private Sub chkPlayerName_Click() Call WriteINI("CONFIG", "PlayerName", chkPlayerName.value, App.Path & "\Config.ini") End Sub Private Sub chkMusic_Click() If chkMusic = Checked Then Call WriteINI("CONFIG", "Music", 1, App.Path & "\Config.ini") Call PlayBGM(Trim$(Map(GetPlayerMap(MyIndex)).music)) Else Call WriteINI("CONFIG", "Music", 0, App.Path & "\Config.ini") Call StopBGM End If End Sub Private Sub UpdateTimer_Timer() If ConnectToServer = True Then Call SendData("NewUpdates" & END_CHAR) End If End Sub ``` basically i made the packet the same as news but the only thing different is the picnewUpdate.caption and other stuff like that, but in the server instead of it beening with the news packet, i made this instead. ``` Public Sub packet_NewUpdates(ByVal index As Long) Dim packet As String packet = packet & END_CHAR Call NewsUpdateTo(index) End Sub ``` so i don't know what is wrong. :O
  2. i've added a login lobby, but so far i have it so you hit a button in the game because i'm still adding it, i've made it so that it has "new updates" and "last update" if you want i can show you it, anyway. when i click on the button i get kicked, any reason why?
  3. when I try to run the game engine I get error "loading the scripting engine", I'm using windows 7, i also get "error 339" when i run the client. I installed the library files, what else can I do to fix this?
  4. ownerscape

    Friends List

    when you copied it did you change the button names?
  5. I'm using ES, and no idea how to send packets but looks like I'm gunna have to Learn.
  6. yes, i have the report button, and the name done, i just need the saving to the main server.
  7. hello, I made a report button in my game, and they enter the name, ect and it works fine. but I was wonder how do I make it send the file to the main server in a foler call report like \report\(NAME.INI) i can make the name ini, i just need to know how to make it save to the main server. any suggestions, or even the command line it's self would be nice. :>
  8. k well i just did that, and still no luck. so, i don't know.
  9. what would i save it as tho, like one of the things i edited was the map editor.
  10. yea that works for just i, but when i go into my folder of the client and i click on that and run it, and do what iadded nothing seems to change. so, i don't know.
  11. sadly i can't find build.
  12. i edited the source layouts, etc and i was wondering how do i update it so it goes into the game, and not just vb? i'm having trouble doing that.. :sad: if anyone could help that be great.
  13. i'm using eclipse-stable and when making a spell you can add anims if wanted to, and so well i did. but my guy doesn't do it. all he does is look like he is walking. and that is all, how can i fix this?
×
×
  • Create New...