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

Ecto

Members
  • Posts

    149
  • Joined

  • Last visited

    Never

Everything posted by Ecto

  1. > It's safe to say you didn't read. ;> That is pretty safe to say haha ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png). I just clicked on the thread and was skimming through the code quickly and just happened to catch that. I wasn't going to read the whole "tutorial" on it because I'm not using it, was just taking a peak at the thread xD
  2. > Getting this error when trying to open it in vb6 > > ``` > > Line 2967: Class MSComctlLib.TabStrip of control tabCommands was not a loaded control class. > > Line 3047: Class MSComctlLib.TabStrip of control tabPages was not a loaded control class. > > ``` > > I tried adding MSCOMCTL.OCX to both folder and system32\. none solved it. Did you actually register the ocx or just place it in the folder?
  3. Are you sure the item's paperdoll is selected right as well?
  4. > Well… I just copied the data folder from my EO 2.3 game into the data files in server. Is there some other way I'm supposed to use to transfer map files? Yeah you can't do that. Eclipse 3.0 and EO 2.3 handle things differently.
  5. Ecto

    Legal questions

    > Dawntide is right. If I were to make my own Call of Duty game, and gave credit to everysingle detail in game. The game company who originally made call of duty would sue my ass so hard, I would have to take out a loan just to piss. They dont give a bum candy about credits. You actually need to read there license agreement and if it says anything about "Without propper consent from the original author" then you need to contact them to get the okay! No. Companies VERY RARELY sue small games. Why the duck would any company waste time sueing somebody who's running a game with 5 players. They have more important things to do than worry about some game that will never make it anywhere. IN THE CASE that your game DOES make it somewhere, the only way you will actually need to go to court is if you start making money from your game on a somewhat decent level.
  6. Just took a quick look at the code and you need to fix this line: ``` If p >= a Then ' In this case, we can unlock the server, as enough are online! CPSUnlock = Tru ``` Forgot the E on true ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png)
  7. Ecto

    Legal questions

    The reason I said you'll be fine if you give credit is because, VERY RARELY, will you even be contacted by a company that you are taking images from etc. In the case that you are contacted, generally the companies are to big anyways to worry about going to court over some game that has 20 players.
  8. I have to leave in 10 minutes, but as soon as I get home I will write it for you ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png) I'll be home in about 5 hours.
  9. Ecto

    Troubles

    > Nvrm where event Editor? Go to your map editor and click "Events".
  10. Ecto

    Troubles

    Everybody posting is wrong right now. It's in the event editor.
  11. > need update for attached files. This. Some one needs to upload the guild files from the tutorial AND this one.
  12. Ecto

    Need help with a Problem

    > Or he could literally added the website link in the news section using vb. That's not his problem and not what he wants. He wants to change the site name whenever he connects to the server and it's down.
  13. Ecto

    Need help with a Problem

    Soul don't help if you don't know the answer ;D He needs to edit it in the server. server > data > options (and or config, depending on what version of Eclipse you have) Website is located their.
  14. > Ive been using eclipse for a while now, and ive recently for some unknown reason to downgrade my windows, is this at all compatable with windows 2000? Yes.
  15. > Tested and worked. ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png) Awesome ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  16. Are you sure you set YOUR IP as the server IP in the config files? Your ports might be fine, but if you didn't set the IP it won't connect.
  17. Ecto

    Legal questions

    Give credit where it's due and you'll be alright. Make it clear none of the things you used are yours and you are not claiming them as yours (such as graphics etc) .
  18. > Don't have the time to test it , but if it works (i'm sure it does ) then Thank you very much for this fix ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png) ! It works, I tested it before I posted ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png). And no problem man.
  19. > ![](http://i1127.photobucket.com/albums/l638/zOMGRegulations/Screenshot_2-1.png) > > ![](http://i1127.photobucket.com/albums/l638/zOMGRegulations/Screenshot_1-1.png) > > ![](http://i1127.photobucket.com/albums/l638/zOMGRegulations/Screenshot_3.png) > > These are the Errors i get ): These don't help at all. Go to the log files for the form errors and post what they say here.
  20. Are you saying VB6 crashes or the game crashes? Your question is very unclear.
  21. Alright guys so I'm home and looked into the banking issue with the gold. The bug was you couldn't withdraw any gold from the bank. The fix for this: Find: ``` If Val(sDialogue) > GetBankItemValue(tmpCurrencyItem) Then ``` in your modInput module. There should be 4 cases. Replace whats inside case 3 with this: ``` If Val(sDialogue) > GetBankItemValue(tmpCurrencyItem) Then sDialogue = GetBankItemValue(tmpCurrencyItem) End If WithdrawItem tmpCurrencyItem, Val(sDialogue) ```
  22. > This is actually an issue with EO itself. ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png) Haha I wasn't aware of that, thought it was just this version ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png). When I get home I'm going to look into it. I'm assuming it's something really basic as it's pretty much the same as withdrawing stackable items. Unless stackable items are also messed up when withdrawing. Even if they are, it shouldn't be that hard to fix. I'll fix it when I get home and post back here with the fix.
  23. > The limit of a Long is 2,147,483,647 > > And you'll need to add the limit check everywhere manually. No other way really, unless you write a sub that hands out gold and checks it, then replace every place that hands out gold with that sub. Writing a sub would probably be easier and cleaner to be honest. Edit: You could also just start a second stack of cash if the user hits the cap.
  24. Ecto

    Active Games

    I'm currently developing a game called Rune Crusade. I'll be able to get atleast 100+ people willing to try the game out, so I'm trying to get an alpha version out ASAP. I think I'll be able to release an Alpha version within the next few weeks. The game is going to be heavily PvP based though. The only PvE aspects will be to farm gear for PvP basically. I'm eventually going to develop a guild owned city system. Guilds will be able to fight over cities etc. I won't be developing guild owned cities for the Alpha though. I'm doing it all basically by myself, GUI, maps etc, so I'm putting as much time as I can into it to get it out soon. It's just a lot of work. TLDR; I'm developing a game that will be released in a couple weeks and will have an active player base as I have "hookups" to get a lot of players trying the game.
  25. Found another game breaking bug ![:o](http://www.touchofdeathforums.com/community/public/style_emoticons//ohmy.png) You can't withdraw gold from the bank. If I were you Death I'd release a 3.0.5.2 immediately with the fix, as it basically makes having a full game undo-able.
×
×
  • Create New...