CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jan 2008
    Posts
    12

    Exclamation Capturing input from Zmud

    I'm trying to make my own trigger system for Zmud, I all ready have all the triggers and scripts written I need, but I figure if I have all the input from Zmud go to a third party for diagnosing afflictions, curing, etc would go faster since Zmud kinda spazes from too much input. If there is a way to capture the input from Zmud, pass it as like a string to scan for the trigger, I know how to send commands back to another form. My issue is just that I can't capture from it from Zmud itself.

  2. #2
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Capturing input from Zmud

    Is there a question there? What is a ZMUD?
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  3. #3
    Join Date
    Jan 2008
    Posts
    12

    Re: Capturing input from Zmud

    Quote Originally Posted by dglienna
    Is there a question there? What is a ZMUD?
    Sorry guess I didn't clarify. I want to know how to capture the line of text from zmud and store it to a string so I can scan it with my trigger system.

    Zmud is for playing mud games. It's an interface set up so you can built triggers and stuff right into it. However, if you try to send too many commands to zmud it'll lock up and die. I figure this way I can set it up a little cleaner and nicer.

  4. #4
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: Capturing input from Zmud

    Doesn't sound like a VB6 question. Sure that isn't a cheat?
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  5. #5
    Join Date
    Nov 2004
    Location
    Lincoln, NE
    Posts
    516

    Re: Capturing input from Zmud

    @dglienna - zMud is intended for parsing output from a text interface, so this really isn't a cheat (more like a functionality extension). I used to use it when I had enough time to go mudding.

    @Runei - Just curious why you need to jump through any hoops to capture raw I/O. zMud provides a plugin system to extend functionality. It specifically defines interfaces to handle user input or do your own output parsing. All you should need to do is write a plugin .dll (I don't see anything that would rule VB6 out as a language for development). The specification is on the zMud website here.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured