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

AlexKuttner

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

AlexKuttner's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. So where do i put this code?``` Class (GetPlayerClass (MyIndex). Name ```
  2. @Xlithan: > You don't just change the command string, you need to change these values: > > If Left$(ChatText, **3**) = "/p " Then > ChatText = Mid$(ChatText, **4**, Len(ChatText) - **3**) So how do i know what to change the values to? sorry i'm new to this :/ Edit: Like this? :O ``` ' Player message If Left$(ChatText, 1) = "!" Then ChatText = Mid$(ChatText, 2, Len(ChatText) - 1) Name = vbNullString ' Get the desired player from the user text For i = 1 To Len(ChatText) If Mid$(ChatText, i, 1) Space(1) Then Name = Name & Mid$(ChatText, i, 1) Else Exit For End If Next ' Make sure they are actually sending something If Len(ChatText) - i > 0 Then ChatText = Mid$(ChatText, i + 1, Len(ChatText) - i) ' Send the message to the player Call PlayerMsg(ChatText, Name) Else Call AddText("Usage: !playername (message)", AlertColor) End If MyText = vbNullString frmMain.txtMyChat.text = vbNullString Exit Sub End If ```
  3. AlexKuttner

    VB 6 on Win 7

    just ran it separate and it worked :) edit: i was following Robin's VB6 installation guide but he didn't mention this error so that's why i asked :)
  4. AlexKuttner

    VB 6 on Win 7

    I have a VB6 problem too, followed Robins guide but i get this error, and there seems to be no valid locations…
  5. Is there's no way to make it fullscreen or something like that so i have a larger workarea and would have to move less? :) also, for somereason i can't install VB6, running windows 7 so that might be it? it whants to do some java download thing and i click yes and then there's just an error :/ any1 know how to fix this? Edit: Also decided to make maps smaller (50x50) Edit 2: Tried Tiled map editor before posting and it did not work, too bad :(
  6. being able to see more of the map area i guess. standard screen is like 15x14 squares, i want it bigger. like full screen mapping or something like that.
  7. Also, whats the diffrence between "VISUAL STUDIO 2010 ULTIMATE" an "VB 6" ? I'm thinking about learning VB6 but i can't seem to find where to get it, can just find visual studio ultimate
  8. i wanted them to be 200x200 because i don't like to have loads of maps, best of all would be if you could have it like in tibia with just 1 big map but still have smaller maps for inside of buildings and such. i'm new to EO so i don't know what would work the best. The reason i don't like the in-game map editor is i have to run around with a character to do different parts of map. i'd prefer if i could quickly move around maps and zoom out to see how the maps look as a whole.
  9. So the problem is this. The in-game map editor is really annoying doing 200x200 maps in, is there any prgram i can use to edit the maps with or maybe there is some way to fix this? Thanks
  10. So when are you supposed to press F1? im spamming it in every screen and still nothing pops up…
×
×
  • Create New...