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

Ruins of Hell

Members
  • Posts

    6715
  • Joined

  • Last visited

    Never

Everything posted by Ruins of Hell

  1. @Dawntide: > By the way: Can you create animations with your character sprite moving? Not by default, no, but it sounds like a pretty easy source edit.
  2. The server has a function called "Function HasItem(ByVal index As Long, ByVal itemnum As Long) As Long". If the player has the item, the return value will be greater than 0\. You should make it so when the player gets an item (as well as when they log in), the server checks if the item number is 2\. If it is, the server can send the client a packet to show the cooking frame.
  3. Right, to start with your first question. In order to change the max number of items, do this. **Both client-side AND server-side, find this**: ``` Public Const MAX_ITEMS As Long = 255 ``` and change the 255 to whatever you want. Then recompile. * * * The second part isn't as easy as the above, but it is pretty easy. Do this **both client-side and server-side**. Find: ``` Add_Stat(1 To Stats.Stat_Count - 1) As Byte ``` and change it to: ``` Add_Stat(1 To Stats.Stat_Count - 1) As Integer ``` Then find: ``` Stat_Req(1 To Stats.Stat_Count - 1) As Byte ``` and change it to: ``` Stat_Req(1 To Stats.Stat_Count - 1) As Integer ``` The next steps are client-side only. Next, go to frmEditor_Item. When ever you see +(Stat Name here) (like +Str, +End, +Agi) look at the scrollbar next to it and click it. Then go to the property window on the right and change Max (or Maximum, I forget) to 32767. Here's a picture if you don't get it. [Picture](http://www.freemmorpgmaker.com/files/imagehost/pics/21d4a3f694cab6ff82b76df633e129a1.png).
  4. Where did you get that code? [Just use this tutorial.](http://www.touchofdeathforums.com/smf2/index.php/topic,78441.0.html)
  5. Well, you'd have to rewrite the entire graphics engine to work with it, which isn't an easy task. I guess for some of them you could just make them an animation instead.
  6. This topic has been moved to [Questions & Answers](http://www.touchofdeathforums.com/smf2/index.php?board=2.0). http://www.touchofdeathforums.com/smf2/index.php?topic=82026.0
  7. @DarkBeast: > Ok it happened when I had my server on and I wasposting somestuff here on eclipse. Can someone help me cause I do know I have a rookit.Can someone tell me how to remove it. Also how would I know what the cause was? Go download [MalwareBytes](http://www.malwarebytes.org/mbam-download.php) and run it. We're not an anti-virus support team.
  8. No. [Your previous topic.](http://www.touchofdeathforums.com/smf2/index.php/topic,82011.msg877906.html#msg877906)
  9. Ruins of Hell

    3D Eclipse!

    @Captain: > Eclipse i open sorce so it's legal. Please stop it. @Wind_Devil: > It is already 60% complete. I just need to code the physic and it will be done in two week. > > May I ask, is it legal to claim the engine as my own since i ripped more than half the code from eclipse? :confused: [Refer to the Eclipse Licensing Agreement.](http://www.touchofdeathforums.com/smf2/index.php/topic,29732.0.html)
  10. Either do a decimal in the form of: * 0.### (e.g., .5) A fraction:* ###/### (e.g., 1/2) A percent:* ##% (e.g., 50%)
  11. @Dawntide: > thanks! the engine is really nice, but in some points it should be improved. Wouldnt it be kind of easy to transfer the engine to VB.NET? It would open up 10000 of new possibilities. No it would not be. > Anyway, why cant i choose my 32x32 .ico desctop icon as icon in vb6? it says invalid picture? I MUST get it to work, because RessourceHacker and Co. do not affect sub Forms, at least i think so. Make sure it's 24-bit, not 32. > And how to edit the start menu? I can only find character creation and main form They are hidden under other things, just drag them around.
  12. @Ganjika: > Thanks, I'll give it a shot and post what goes down here. > Btw, what file am I going to try to be editing when I get this software downloaded? > > Update its a 32 bit program so I'll have to take it into VMWare it looks like. > Would I be able to take the server files I need to edit into vmware, edit them there and copy them back into the windows 7 64 bit server installation? VB6 is a 32-bit program as well. Run it in compatibility mode for XP SP3 and as an administrator.
  13. I don't think FreeBasic would work. You might try [Envelop](http://www.freebyte.com/programming/compilers/envelop.html) which claims to compile VB6.
  14. It probably has to do with your host, photobucket limits file sizes to 1MB and will compress anything higher. Also when using nightly, the top-left pixel isn't transparent. You have to make it transparent in the .PNG.
  15. @Dawntide: > thanks, what do you mean with "Delete files". All files? Not only the items? > > how to convert them, i do not want to delete everything! Well, if you only want to delete the items, do the following client **and** server-side: Under: ``` Private Type ItemRec Name As String * NAME_LENGTH ``` Change NAME_LENGTH to however long you want to allow the item names to be. So if I wanted a 40 character name length, I would change the above to: ``` Private Type ItemRec Name As String * 40 ``` Do this both client and server-side, then compile and delete your items.
×
×
  • Create New...