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

Diefool

Members
  • Posts

    37
  • Joined

  • Last visited

    Never

Everything posted by Diefool

  1. ![](http://img00.deviantart.net/bd19/i/2014/325/a/d/sword_art_online___kirito_wallpaper_by_trinexz-d874v7k.jpg) Not my work, but a nice job by Trinexz from Deviant Art… love the background behind Kirito :)
  2. @'Miharukun': > ![](http://i.imgur.com/7Obs1vu.png) This setup here means item number 3 needs to be "Guild Creation Voucher" or similar the cost of 1 means you only need 1 in inventory to create the guild with this item number 3 in your bag type "/guild make (guildname) (guildtag)" in your chat box to create the guild use "/guild help" for a list of all commands for guild administration I have this working in Skywyre v9 just fine
  3. Diefool

    The "ban wave"

    And you never have a reason to to rob a car, he had a legitimate excuse to ban assholes…. the assholes came in a wave I suppose..... asshole wave, ban hammer...
  4. Diefool

    The "ban wave"

    collecting data over a certain period of time and then using this information to ban 100+ people simultaneously would be a ban wave. end quote…..
  5. Diefool

    The "ban wave"

    That's a wave? I think these people need to learn what a ban wave is… collecting data over a certain period of time and then using this information to ban 100+ people simultaneously would be a ban wave. This is definitely targeted bans and justified publicly (which you should not of had to do...) Pretty simple... don't steal shit, don't be racist, don't be psycho cyber stalker, don't get banned!
  6. Diefool

    Yuko banned.

    @'MadalinV': > The account info I use on this site is one of my most used ones. **Shame on you admins** Wait…shame on admins for....wait...what? Shame on you for using the same password everywhere.... pro tip about network security, the password could of been stolen by other means and this is bad practice on your part. Not saying the site owner made the best decision or did not make the best decision, but I must state that your decision to use the same password for all accounts is a terrible one. www.youhavedefinitelypwnedyourself.com
  7. The wedding speech though…. LOL!!! Would take some hard-coding, and probably wouldn't hurt to either set the character name or character ID (both?) of the other player you are married to in your Player Variables for event reference. Never really thought MMO marriage was a good thing (just seemed awkward lol) but then again, this isn't for me; it's for other players. Anxious to see how this turns out none-the-less, so I wanted to put some input in so I would be following this thread :)
  8. Diefool

    Yuko banned.

    Link, if luck was a snail you still couldn't catch it…. I feels bad man :/ Thanks for letting me know my password hash was stolen.... I don't use that password for anything but this site thank the heavens.... It's still very good to know and I appreciate this move as far as administration goes. As for Yuko.... wow.... unbelievable..... I'm going to go register just to tell her she's a bitch to her face since she can't read these forums any more.... another thanks for the info on that one ;)
  9. copy the code from the above tutorial into your source http://www.freemmorpgmaker.com/thread-474.html?highlight=pet+summon
  10. well you have it checking the maps highest possible x coordinate Map(mapNum).MaxX and then here you have it using the next x tile Map(mapNum).Tile(x + 1, y).Type it's not going to even exist if you are standing on the maps max x coordinate (i.e map is 15 tiles wide, you are standing on tile 15, it will check tile 16….) same goes for the Y values I would of gave exact locations in the script if you would of copied the actual code into code and /code [ ]'s but you uploaded screenshots and I am not going to retype that entire code block from an image ;)
  11. @'iLeGiTiMx': > Sorry for this dumb question, but is it possible to make the Window bigger? > Tried to change > > ScreenWidth = 800 > ScreenHeight = 600 > > But this doesn´t seems to take affect. > Can´t be this hard, can it? :o > > Thank you :) > And nice engine :P I'd have to look into the source to get an answer for this (will be trying to tackle it myself and possibly implement fullscreen modes and multiple resolutions for my game eventually although I will admit this is low priority and wont be looking into it for awhile). There may be topics on it already in the tutorials section (use the search function) also….when I do get around to looking into it I will not be replying here with the answer. The main purpose of this post is to ask you to post this again in "Questions and Answers" forum, and I will post a reply there **when I get to that** if someone else don't get you beforehand. TLDR - Use search function first, if nothing found make a new post with this question in the proper place (a new thread in "Questions and Answers") EDIT: Looking at this in the future it seems I was being a total d**k....and don't mean to come off this way... just hoping you post there in case someone else has an answer already (as no one will find this question randomly by reading this thread....which is now pretty much dead by the way if you look at the newest edit to OP....) hope I didn't rub ya the wrong way, was truly meant to get you the answer you requested
  12. @'SkywardRiver': > Actually the team that was developing the new Eclipse Engine have decided to not post it on Eclipse. They're work will continue, I'm told, but it will be released on a new site that has yet to be disclosed. You have Link to thank for that as well. > > Also, I really appreciate the help you've been supplying to peeps using this release :D No worries, just a hobby… no point in keeping it all to myself
  13. @'SkywardRiver': > Hmmmmm. My copy of v9 has this fixed. Anywho, if I end up updating this, (the still official version of Eclipse (nice, Link. Tell me off and then keep my stuff)) then I'll make sure it's fixed. Haha maybe I'm working with V8 or something, my apologies if so. The download link is still going to Skywyre, maybe he will change it when the team releases a version of their own? I guess until then it's just The Team, Skyward's Dream… Don't know about that beef, but that is a terrible thing considering you have the best release on this forum imo..... sorry to hear this
  14. Sorry for double-post, but in next update you may wanna fix this as well (Only renders the first 50 maps as working): Client: ``` MAX_MAPS = 300 ``` Server: ``` MAX_MAPS = 50 ```
  15. Why isn't it necessary for the client to request this information? If the server doesn't send it upon request of the client, how will the server know when to send the auction list? Sorry, I'm not trying to argue your point, just understand.
  16. SSendAuctions needed in server and client both also need CRequestAuctions (A packet from client to server requesting this list) and they need to interact. Have you done anything like this before to understand communications?
  17. Do you have SSendAuctions in the server? This will only trigger if it receives that command from the server. The code looks fine, I'm thinking the problem lies in another part of the code you have not shown.
  18. @'Agoraphobic': > - Variables’ names are not saving. They just erase after you close the Variable Window. I have posted a way to fix this one here: http://www.freemmorpgmaker.com/thread-85828-post-946341.html#pid946341 thanks for the rest of the list, I will want to fix these for my game :)
  19. Glad you got this figured out, bud!
  20. @'or3o': > sometimes in vb6 the tabs break, to fix it up in the top left click "project" then click component, there should be a list of check boxes popping up, see if any saying tabs are checked, if not check them and save. > Normally when this happens it messes up other stuff too. > I am going by memory here and dont have vb6 installed anymore but basically find an old working copy of eclipse, and compare its component check boxes to your current ones and make the required changes. I only remember this off the top of my head because i once spent a few hours with the same problem. Cheers! You are probably right, I just noticed I can't see a required component in his screen shot because it needs to be scrolled…. Under "Controls" tab make sure you have "Microsoft Rich Textbox Control 6.0 (SP6)" checked
  21. When you installed VB6 did you run the setup software as admin? If not uninstall VB6 and reinstall it with admin privileges on the Setup.exe That's the only help I can offer…. I ran the VB6 setup as admin and have had 0 issues.... hope it helps, I didn't run into any issues outside of that myself.
  22. Oh I'm unsure, I didn't realize where you were located. I have seen some good works done with just the mouse as well, just was a suggestion. I want to see more though! MORE ART MORE ART!!! :)
  23. @'Dr.House': > Drawing Tablet not iPad, it's a difference. > Not phone tablet, my man. Agreed, it is definitely not an iPad It's literally for artists to draw on a familiar medium (Even comes with a pressure-sensitive pen stylus). It's like an extra hardware component for your computer (plugs in like your mouse, keyboard, etc.) and will draw right into paint, paint.net, photoshop, whatever you use. Professionals in the industry will tell you these are a MUST HAVE for any digital artist. Even scanning and layer-tracing you will want one of these.
  24. What OS are you running? Make sure VB6 has administrator privileges.
  25. mnuOtherCommands OOC - Necro'd again…. because I'm bored
×
×
  • Create New...