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

Oldspice

Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Everything posted by Oldspice

  1. good job! thats a very nice and simple reflect-damage skill
  2. Im assuming you mean how does a form show on top of frmMirage when you expand frmMirage. frmMapEditor.show vbModeless, frmMirage so frmMirage is the parent form.
  3. if you are willing to adust your spritesheet a little, there is no need for case. just to give you the general idea ``` Call SetPlayerSprite(Index, GetPlayerSprite(Index) + 30 + dye) Call TakeItem(Index, 96 + dye) SendPlayerData(Index) ``` assuming your original sprite is 0 and the dye script = 0 then the new sprite will be 0+30+0= 30 and will take item 96 + 0 now your next dye is 1 then the new sprite is 31 and will take item 97 this way if you add more dye items or sprites you don't need to change the code, just organize your spritesheet . :)
  4. Oldspice

    Visual bank

    @>~(Squiddle)~ Looks perfect, and a great addition to eclipse ^.^. I must say you fixed the bank AND you made it 3 times better. Though just one more thing, sorry If I sound noobish, what can I change the IT variable to? Or how can I stop the message "It has not been defined"? ^.^'. Actually i think he ment paste it below ``` ' visual inventory ``` or you can cut n copy from visual inventory so it looks like this ``` 'visual bank Dim Q As Long Dim Qq As Long Dim IT As Long ``` also the second part is in modHandleData and not in modClientTCP when you copy the code from bank.frm make sure you don't overwrite the 'on formload' in frmMirage. and i noticed it wouldn't execute the modal dialog for amount to transfer for stackable items..so i added the following to frmMirage. under this ``` Private Sub picBank_DblClick(Index As Integer) ``` find this ``` If GetPlayerBankItemNum(MyIndex, BankNum) > 0 And GetPlayerBankItemNum(MyIndex, BankNum) 0 And GetPlayerBankItemNum(MyIndex, BankNum)
  5. @Jarvis: > Okay, I think I might have figured out how to get rid of that ActiveX Component error.. > > Download COMSocketServer.dll from http://www.worldwarproductions.com/Eclipse%20Library/COMSocketServer.dll , then run "regsvr32 path/to/COMSocketServer.dll" > > See if that fixes your troubles, and let me know. I just downloaded the latest files just yesterday and had both this 429 error on running the server and 339 error (missing VBMP.ocx) on the client. I got both files from http://www.worldwarproductions.com/Eclipse%20Library/ and copied it to C/WINDOWS/System32 then ran regsvr32\. Now everything works fine. Seems the latest library install files is broken. Karma +1 to you for helping me solve this.
×
×
  • Create New...