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

lokome

Members
  • Posts

    34
  • Joined

  • Last visited

    Never

lokome's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Oh my bat… Weird system you got there.. Scrolling has to be set to 0 in data.ini for it to work.. i had 1.. (Thought that should be 1).. Sorry for this post! Anyways... When i enter in one map, it gives me error: Subscription out of range! Help! :D
  2. I don`t know what did i exactly change… I changed, updated a lot of stuff.. I integrated MySql, deleted banks, spells (Probably not all of them). And all unneeded things...
  3. Well when i`m in game.. And scrolling is turned on in server.. my character can go but map won`t scroll.. it won`t scroll in any way.. (My Character should be in center of map and map should be scrolling, but it is not) It scrolled at the start.. I edited source a lot and then when i went to test everything out it just did not work anymore.. As far as i can remember i didn`t delete or change anything at scrolling…
  4. Hello everyone.. As few of you know.. I am using EE 1.0.. Scrolling was working fine for me at the start.. but after some time when i edited source, deleted unneeded things scrolling stopped working.. I tried to turn off and on.. Still not working .. Weird bug.. I checked my backup and everything was the same there.. just scrolling worked there… Would appreciate if someone would help! Thanks.. :azn:
  5. laacis0 - I have the same problem! :D Well yeah.. I don`t know why.. but all i can recommend is to use EE 1.0 Evo (Fixed edition).. I`m using it too.. And i`ll say that there aren`t many bugs…. Well good luck choosing.. P.S Devolpers said to wait for SE 1.0\. It should work for our systems too! EDIT: Oh... And EE 2.5 works too... ;)
  6. Had it Fixed thank you.. I forgot to define some things..
  7. When i add Moves = Files + 1 Gives me error: "Can`t assign to array"
  8. Should look like this?? : ``` Function load_moves() On Error Resume Next Dim files() As String Dim filess As Integer Dim I As Integer Dim Moves() files = GetAllFilesInDir(App.Path & "\CyMoves\") filess = UBound(files) If filess < 3 Then MsgBox "Error loading moves, only " & filess & " files found!" End End If ReDim Moves(filess + 1) For I = 1 To filess Call SetStatus("Loading " & filess & " moves... " & Round(I / filess * 100) & "%") If InStrB(files(I), ".ini") Then Call load_move(files(I), I) End If ModDoEvents Next I If Err.number 0 Then MsgBox "Error loading: #" & Err.number & " (" & Err.Description & ")" End If End Function ``` But then again.. It shows "Error loading acidpalace.ini #9: Subscript out of range)" And all files that he tries to load from moves map gives this error..
  9. And how should it be right? Dim Moves As Array(filess + 1) ?
  10. Maybe Moves are defined incorrectly ?
  11. Well yes. Modify source. Adding some things
  12. Ahh… C`mon be more active pls :D
  13. Please help me find whats wrong here (It says: Excpected Array) when i try to compile. Problem is somewhere in MOVES! ``` Function load_moves() On Error Resume Next Dim files() As String Dim filess As Integer Dim i As Integer Dim Moves As Boolean files = GetAllFilesInDir(App.Path & "\CyMoves\") filess = UBound(files) If filess < 3 Then MsgBox "Error loading moves, only " & filess & " files found!" End End If ReDim Moves(filess + 1) As MoveRec For i = 1 To filess Call SetStatus("Loading " & filess & " moves... " & Round(i / filess * 100) & "%") If InStrB(files(i), ".ini") Then Call load_move(files(i), i) End If ModDoEvents Next i If Err.number 0 Then MsgBox "Error loading: #" & Err.number & " (" & Err.Description & ")" End If End Function ```
×
×
  • Create New...