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

Legolas Td

Members
  • Posts

    19
  • Joined

  • Last visited

    Never

Legolas Td's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Um, yes i have done things with it. "Im not being a smart-ass either, soo please dont take it the wrong way". Here's what ive added. My arena map moral, with a dueling gui that includes Staking. My Exp System. A trading system. A Friends System. A Quest System. Pet system. And pretty much schrewed up the source code to EO's Current state :p. Regards, John
  2. CSDE does not seem too complicated to me… The source code looks pretty much the same, Minus the dx8 features and lack of a trading system "which isnt that hard to do if you were to use EO's". But i guess that's just me.
  3. Legolas Td

    Hamachi

    Port-forward. Response 1: I do not know how. Answer: I will do it for you, do you have teamviewer? Response 2: My router is locked and my parents wont let me in. Answer: Get a key logger, and trick your parents into logging into the router. Response 3: My parents are too smart. Answer: Download utorrent and try it out, has never worked for me though. Regards, Legolas
  4. It doesnt matter anymore, ive quit coding EO and moved on to -snip-. Thanks anyway soul, but that was not the problem even if i was still searching for the answer. Regards, Legolas td.
  5. This is sooo awsome, it makes me horney. :p
  6. Ok, soo i got vb6 to load the server code right today. So i figured i would add this system, test it, and release it too you guys. "Sadly i still cant edit the client side…. Wont load the rich text box?". Ok soo this basicly works by making you drop your items only if you are a Playerkiller when you die. What will be added in V.2: Non-Player killers will drop their item of highest value on death. OK this is a very very simple server sided edit, you do not have to touch the client side at all. First off go to modPlayer and find this: >! ``` ' Drop all worn items For i = 1 To Equipment.Equipment_Count - 1 If GetPlayerEquipment(index, i) > 0 Then PlayerMapDropItem index, GetPlayerEquipment(index, i), 0 End If Next ``` And replace that with this: >! ``` 'Drop inventory items, Will make this only apply to player killers. If GetPlayerPK(index) = YES Then For i = 1 To MAX_INV PlayerMapDropItem index, i, GetPlayerInvItemValue(index, i) Next >! 'Send all equiped items to the inventory to be dumped. For i = 1 To Equipment.Equipment_Count - 1 If GetPlayerEquipment(index, i) > 0 Then PlayerMapDropItem index, GetPlayerEquipment(index, i), 0 End If 'Send Weapon GiveInvItem index, GetPlayerEquipment(index, Weapon), 0 SetPlayerEquipment index, 0, Weapon 'Send Armor GiveInvItem index, GetPlayerEquipment(index, Armor), 0 SetPlayerEquipment index, 0, Armor 'Send Shield GiveInvItem index, GetPlayerEquipment(index, Shield), 0 SetPlayerEquipment index, 0, Shield 'Send Helmet GiveInvItem index, GetPlayerEquipment(index, Helmet), 0 SetPlayerEquipment index, 0, Helmet Next >! 'Drop *equipped* inventory items For i = 1 To MAX_INV PlayerMapDropItem index, i, 0 Next End If ``` And BAM! your done. Credits to: Elbereth for the whole dropping base. To me for making it only affect player killers. Have Fun, Regards, Legloas Td.
  7. If you really want dynamic lighting you could try out vbgore or netgore… I believe they have it, but the source isnt as good as EO. Goodluck.
  8. If this was your first website, you should of went with webs.com
  9. Legolas Td

    Vb6 errors

    Can someone please help me, when i open up the client i still get this error: Line 2189: Class RichTextLib.RichTextBox of control txtChat was not a loaded control class.
  10. Legolas Td

    Vb6 errors

    wow i got excited when i seen such a quick reply, until now… :(
  11. Legolas Td

    Vb6 errors

    Ok i reinstalled vb6 enterprise, and now it will open correctly and everything. but when i open the server or client i get this error: Error accessing the system registry. What is wrong???
  12. > You're the reason the internet is so saturated with retarded websites. You make baby kittens cry. :p
  13. Legolas Td

    Vb6 errors

    Ok i followed robin step by step, but now i get this error on startup: Visual Basic was not able to start up due to an invalid system configuration. Missing or not registeredVB6TMPL.TLB
  14. Legolas Td

    Vb6 errors

    Thank you soul, for some reason i skipped that step? :P Regards, Legolas Td.
×
×
  • Create New...