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

Salted Snail

Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Everything posted by Salted Snail

  1. After resizing my screen, when I hover over an item or spell this happens: >! ![](http://i51.tinypic.com/14lmr6e.jpg) The calculations for th positioning of the picturebox is still vanilla cause I didn't wanna fk with it without having some sort of clue as to what i was doing. Any tips?
  2. Whenever I try to save an item I get an RTE 9 pointing to this line in HandleSaveItem ``` CopyMemory ByVal VarPtr(Item(n)), ByVal VarPtr(ItemData(0)), ItemSize ``` Tried deleting all items but it didn't solve the error. Any pointers?
  3. Hey, after playing around with the form work to fit EO 2.0, I keep getting an error with this line of code: >! ``` ' Spell Casting For i = 1 To MAX_NPC_SPELLS If Npc(npcNum).Spell(i) > 0 Then If MapNpc(MapNum).Npc(x).SpellTimer(i) + (Spell(Npc(npcNum).Spell(i)).CastTime * 1000) < GetTickCount Then NpcSpellPlayer x, target, i End If End If Next ``` Basically all I did was make the scrollbars use the old NPC Spell arrangement with some minor tweaks. For instance, This is the scroll bar for spell number one: >! ``` Private Sub scrlSpell1_Change() Dim aString As String ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo errorhandler If scrlSpell1.Value = 0 Then aString = "None" Else aString = Trim$(Spell(scrlSpell1.Value).Name) lblSpellOne.Caption = "Spell One: " & aString Npc(EditorIndex).Spell1 = scrlSpell1.Value ' Error handler Exit Sub errorhandler: HandleError "scrlAnimation_Change", "frmEditor_NPC", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit Sub End Sub ``` Im new to this crap so can you please tell me what I'm doing wrong? Thanks.
  4. Hey, When i try to compile the server, I get "Ambiguous name detected" with "Sub PetFollowOwner(ByVal Index As Long)" Any ideas? Thanks in advance. EDIT: Nevrmind, fixed it!
×
×
  • Create New...