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

Displaced

Members
  • Posts

    1019
  • Joined

  • Last visited

    Never

Everything posted by Displaced

  1. Hamachi? I think there is something wrong with the connection.
  2. What you need is a spelling and grammar course. I know that my spelling isn't almost perfect at all, but i think it's way better than yours. And to your question: You need VB6, a bit of brain. If you have those, you can look where the NPC's are killed. (Server source -> modCombat -> playerattacknpc)
  3. Yeah you're right. I didn't looked it up..
  4. Jup. DMG - Rand value between x and agi / 2 IIRC…
  5. Displaced

    Mirage Realms

    Well i don't know MR3.0.. But you should always debug it if something doesn't work. Do you know how to use breakpoints and function stepping?
  6. Displaced

    Mirage Realms

    A Line would be great. Otherwise you should step by step debug it. Set a breakpoint when loading quests and go through the code until it breaks.
  7. > EO is better than ES perhaps tenfold, but if scripting was re-added we'd maybe have some more new ideas in. I totally disagree. How are scripting and ideas connected? Btw you can script, you just have to do it in VB6 and it's called coding. There isn't a big.. No not even a small difference between it. Except for Syntax.. MAYBE. You should USE what you have. There are possibilities. Scripting is not needed if you have the source.
  8. You have to choose a Size which is devidable by 32. so 800 x 576 for example.
  9. Robin dropped developing, van shaik (i hope i wrote it correctly…) thought about a c version of eclipse. Well some freaks copied CS:DE engine and say it's theirs.. Nothing else which is worth a word i think.
  10. Your copy of VB6 is wrong… can't you read? Your missing license information for the component. Since you use a non legal portable version, it's your problem.
  11. Did you ever heared something about courtesy… formalism... ans such things? Something like "please", "Could somebody", "Is somebody willing to do", "I would appreciate your help".... Such things are important if you want to be successful. (I hope i didn't do any mistakes.. My school english is sometimes poor)
  12. well look at the clsBuffer in EO.. That's a proper way to do it.
  13. ^^ He stole the code, and said this is his. Original Project is CS:DE from Robin, right here. Everything else is just a blind fucking copy…
  14. So you now how to render maps? You know how to make effects like rain, snow, night & light? You know how to let your character move, attack & interact with objects? You know how to organize data for everything? Items, Npcs, Resources, Animations etc. pp? But you don't know how to make a chat system? Like, send a message to the map… (send message to all ppl on map) and so on.. Really, you should overthing your decision to make an Engine from scratch.
  15. Displaced

    New Default GUI

    Was that red design for EE yours?
  16. Really? Well i didn't searched that much, but the sites I found wrote, that this isn't really possible with VB6. That's why i didn't searched for a better solution than this.
  17. As you know, some People wonder why the game won't work correctly if you set the DPI higher than normal, or even lower if it's possible. To avoid that, you can break and inform your player, that they're using a wrong DPI setting. How? It's THAT easy. All you need are 3 Things. The location of the DPI settings for OS prior Windows 7: ``` HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontDPI ``` The location of the DPI settings for Windows 7: ``` HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics\AppliedDPI ``` And a function to read that. ``` Public Function RegRead(Path As String) As String Dim ws As Object On Error GoTo ErrHandler Set ws = CreateObject("WScript.Shell") RegRead = ws.RegRead(Path) Exit Function ErrHandler: RegRead = "" End Function ```Shortcut rules for the paths ``` HKLM\: HKEY_LOCAL_MACHINE HKCU\: HKEY_CURRENT_USER Example HKCU\Control Panel\Desktop\WindowMetrics\AppliedDPI ``` That's it. Oh wait.. What are you asking? Where to put that? HMM Let me think about it… If the main form loads... aaw holy shit formload is the keyword. ``` Private Sub Form_Load() ```Inn frmMenu… Good luc... What? You need an example code? ``` Dim DPI As String DPI = RegRead("HKCU\Control Panel\Desktop\WindowMetrics\AppliedDPI") If (DPI "") And (DPI "96") Then Call MsgBox("I'm sorry, but your DPI Settings are wrong. They need to be set to 96.") Call DestroyGame End DPI = RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontDPI") If (DPI "") And (DPI "96") Then Call MsgBox("I'm sorry, but your DPI Settings are wrong. They need to be set to 96.") Call DestroyGame End ``` Okay, now you got everything. If someone could test it for me for OS prior Win 7, please.
  18. Btw. you got a typo "charecters" should be "characters".
  19. Wow. Is really everything for free without credits?
  20. Could you post your computer specs?
  21. You could install wine and start it there. Should work. But native ist just better…
  22. Displaced

    Problem!

    This is a modified version. Isn't it?
  23. Displaced

    Problem!

    I don't get it. Make a screenshot or a video or something…
  24. Displaced

    Problem!

    Read the tutorials? And also what version do you use? EO2.0 works out of the box.
  25. Use Webkit or gecko… You are currently using something like ie basic engine which is more worse than ie 8. Or to make it short: useless.
×
×
  • Create New...