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

Tashology

Members
  • Posts

    45
  • Joined

  • Last visited

    Never

Tashology's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I said, it's a subscript out of range error 9. Meaning that a variable is passed to an out-of-bounds specified array.
  2. I get a subscript out of range error on the following sub: (Highlighting the ">>" line) ``` Public Sub UpdateMapBlock(mapnum, x, y, blocked As Boolean) If blocked Then MapBlocks(mapnum).Blocks(x, y) = 9 Else >> MapBlocks(mapnum).Blocks(x, y) = 0 End If End Sub ``` And yeah, I deleted the maps in both folders.
  3. I tried it and I keep getting the same error - Something to do with Map Blocks… Any ideas? EDIT: I've removed all of the ownership stuff and it's still getting that issue when I try to log in. I can no longer do anything.
  4. I didn't try that, will the server remake the maps automatically?
  5. Ideally I'd want to program it because that way it's a bit easier when it comes to storage (plus given the fact that it would be easier to make each map store the owner's username and recall it).
  6. Hello, I am trying to program a system which will save an owner for each map. I have added the variable .MapOwner to both the server and the client but it just won't load or save it and whenever I try to save the map owner, the client crashes. Any advice on how to add extra Map variables? Thanks!
  7. Hello, I'm trying to add a vanity equipment type in Eclipse Worlds. I have added it to the item editor combobox, I have coded where it will appear in the equip screen, given it a paperdoll order and added it to the equipment variable. When I double click it in the inventory, nothing happens. What else needs to be done for it to work? Thanks,
  8. Hello, I tried to edit some server-side code to make the following happen: 1) When the recipe is used it will take the recipe item. (example: ItemA is the recipe and ItemB is the ingredient. When ItemA is double clicked both ItemA and ItemB are taken from the player and replaced with the result) 2) Only require 1 item for the recipe to work. I looked into the code to make it so only 1 item would be required but whenever I commented out the 'Item2' sections the recipe wouldn't take any items from the inventory, allowing the recipe to be used over and over again. Can anyone help? Thanks,
  9. I don't know what I did. I tried running it and it worked.
  10. Ok, I've added it - I tried it with 2.1 and got 'MSCOMCTL.OCX could not be loaded'. I changed the 2.1 to 2.0 and didn't get the error. When I tried to run the program, however, I still got the user-defined type not defined error.
  11. ![](http://i.imgur.com/w5qNmTK.png) This is the VBP project I have open. I can't see where the MSCOMCTL version or where to change it. Also I looked into the MSCOMCTL file as well but it's full of random symbols and I can't see anywhere to edit it. Any recommendations?
  12. @'Helladen': > The version used in client.vbp is wrong. Change MSCOMCTL.OCX 2.1 to 2.0\. Use notepad to edit it. If it is 2.0 change it to 2.1. Thanks for the help but: What do I edit? The VBP or the OCX file? And where is the value to change?
  13. I am getting other issues which _might_ be the cause. When I load up the project there are some errors and it says to refer to the log files. I opened one of the log files for Editor_Events and found this: ``` Line 1696: Class MSComctlLib.TabStrip of control tabCommands was not a loaded control class. Line 3930: Class MSComctlLib.TabStrip of control tabPages was not a loaded control class. ``` Is this causing the issues? If so what can I do to fix it?
  14. Ok, I don't appear to be getting the previous issue however when I try to run the project now I get 'user type not defined' on this line: Vertex(0 To 3) As TLVERTEX I've installed a number of things from the link with no avail and I've registered all the DLLs. No luck.
×
×
  • Create New...