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

WiseRock

Members
  • Posts

    499
  • Joined

  • Last visited

    Never

Everything posted by WiseRock

  1. I liked it but the sprites well, Could you add some clothes on them. Other then that good job ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png)
  2. Check out how Robin does on CyrstalShire ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png)
  3. Mine are the backgrounds 1st Desktop ![](http://i49.tinypic.com/1z1fls3.jpg) 2nd ![](http://i47.tinypic.com/huq991.jpg)
  4. yes it will work but you need to convert the code that has to do with DX8 Alas i dont know how to do that.
  5. 1.00000000000000000 ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  6. it seems like this sub was forgotten ``` Private Sub HandleBid(ByVal Index As Long, ByRef Data() As Byte, ByVal StartAddr As Long, ByVal ExtraVar As Long) Dim Buffer As clsBuffer Dim Bid As Long Dim Num As Long Set Buffer = New clsBuffer Buffer.WriteBytes Data With Buffer Num = .ReadLong Bid = .ReadLong End With Call BidOnAuction(Index, Bid, Num) Set Buffer = Nothing End Sub ```
  7. > Când this be done for ER? And can you make the GUI have the same size while maximising only the windows? of view? Yes but you really dont need to do any code changes as for the form I am not sure.
  8. > make sure SpellRec in modTypes is exactly the same in server and client Thanks now it works > I'm going to go ahead and make an educated guess and say that your 'spellnum' is larger than the range of the array. Thanks for Trying! Appreciate it! This is now Locked
  9. Hello, When I was making some spells this error popped-up "Runtime Error '9'" it highlights ``` CopyMemory ByVal VarPtr(Spell(spellnum)), ByVal VarPtr(SpellData(0)), SpellSize ``` from the Sub ``` Private Sub HandleUpdateSpell(ByVal Index As Long, ByRef Data() As Byte, ByVal StartAddr As Long, ByVal ExtraVar As Long) Dim spellnum As Long Dim Buffer As clsBuffer Dim SpellSize As Long Dim SpellData() As Byte ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo errorhandler Set Buffer = New clsBuffer Buffer.WriteBytes Data() spellnum = Buffer.ReadLong SpellSize = LenB(Spell(spellnum)) ReDim SpellData(SpellSize - 1) SpellData = Buffer.ReadBytes(SpellSize) CopyMemory ByVal VarPtr(Spell(spellnum)), ByVal VarPtr(SpellData(0)), SpellSize Set Buffer = Nothing ' Update the spells on the pic Set Buffer = New clsBuffer Buffer.WriteLong CSpells SendData Buffer.ToArray() Set Buffer = Nothing ' Error handler Exit Sub errorhandler: HandleError "HandleUpdateSpell", "modHandleData", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit Sub End Sub ``` This started happening after I added [Spell Scaling](http://www.touchofdeathforums.com/community/index.php?/topic/116465-eo-complex-spell-scaling-equation-server-only/) [Spell Scaling for Warriors](http://www.touchofdeathforums.com/community/index.php?/topic/125131-eospell-scaling-for-warriors/) and lastly [This Bug Fix for Spells](http://www.touchofdeathforums.com/community/index.php?/topic/131259-having-more-than-23-spells-flood-server-bug-fix/)
  10. > I get an error here``` > > frmMain.Socket.RemoteHost = Options.IP > > ``` > Invalid operation at current state > > error number 40020 To fix this first delete those 2 lines ``` frmMain.Socket.RemoteHost = Options.IP ``` ``` frmMain.Socket.RemotePort = Options.PORT ``` Then go to frmMain find Socket and in Properties find RemoteHost and Remote Port and put "127.0.0.1" or your IP "7001" or your Port
  11. Okay I solved it was the Stats. I did not give it good stats which resulted in slow attacks. And the FPS thing was also a problem barely. Thanks for all the Help Now how do you lock your own stuff ![:mellow:](http://www.touchofdeathforums.com/community/public/style_emoticons//mellow.png)
  12. I figured it out. It seems like they were just attacking really really slowly. going to see if the Custom Attack Speed Source will do the job ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png) Edit I keep getting a Runtime error '9' ``` CopyMemory ByVal VarPtr(NPC(n)), ByVal VarPtr(NpcData(0)), NpcSize ``` when i tried adding [this](http://www.touchofdeathforums.com/community/index.php?/topic/130578-eo20npc-attack-speed/)
  13. I am having a wierd problem in which npcs attack dont me. But I can attack them with spells, projectiles or almost anything but they cant attack me. Could anyone help me with this problem And I have tried deleting my npcs it did not work
  14. I figured this out please delete or lock
  15. Hey got it fixed. All I had to do was target a character lol
  16. **Delete this was an accident**
  17. lol I figured it out all I had to do is select a target and click ctrl. I am such a douchebag some times
×
×
  • Create New...