QueryCAT Logo
Search 5,000,000+ questions and answers.

Frequently Asked Questions

Q: Do I need to be a programmer, or know C, to write a D-Mod?

D-Mod Author's FAQ Revision 1.3
A: This kind of depends on your personal talent, and how dedicated you want to be in learning how. Dink-C might carry over the same basic style as the C programming language, but it's very different and much easier. It's more of a scripting language than a programming language. Having programming experience is a big plus, especially if it's in C, but I don't think it's absolutely necessary if you read through TUT1.

Q: What tools do I need to create a D-Mod?

D-Mod Author's FAQ Revision 1.3
A: You need to own a copy of Dink Smallwood on CD (available from RTSoft at www.rtsoft.com). There is a folder on your DINK CD called "develop". Copy everything from this folder into your main Dink directory. That's it! The map editor is called DINKEDIT.EXE. I'd recommend downloading DinkRun (mine) or CreatedWorlds (Silencer's) as a front-end for running DinkEdit. NEW: I have created a D-Mod Skeleton which is the shell of a D-Mod you can simply UNZIP into a Dink subdirectory of your choice.

Q: How do I start creating my D-Mod? What do I do first?

D-Mod Author's FAQ Revision 1.3
A: Well, after making sure you copied the development folder off your CD into your main Dink directory, you need to make a subdirectory for your D-Mod. Under your main Dink directory, make a folder (directory) to store your D-Mod files. For instance, my main Dink directory is C:\DINK\ so I made a folder under this called SCAROFD and ended up with C:\DINK\SCAROFD\ to begin my Scar of David D-Mod.

Q: How can I take a "screen shot" of my D-Mod?

D-Mod Author's FAQ Revision 1.3
A: When I wanted to put pictures of Dink's Doppelganger on my web site, I tried and tried to make it work but I couldn't. Finally, I found an EASY (and probably the best) way to do it. While playing the game (or while in the map editor) get to the screen you want to capture. Then, simply hit the <print-screen> key on your keyboard. Nothing visible will happen, but the current screen will be copied to your clipboard.

Q: When I finish my D-Mod, how do I zip it up to distribute?

D-Mod Author's FAQ Revision 1.3
A: If you have WinZip, I believe the task is easier. There is also a tool for winzip to make self-extracting EXE's out of a ZIP file. There is a similar tool for PKZIP DOS but it doesn't automate the installation. Anyway, I use PKZIP 2.04G for DOS, and I created a batch file called M.BAT. I put this file in my D-Mod directory. Then, I run a dos-prompt and change into my D-Mod directory. From there, I just type M.BAT <enter> and it does it! M.BAT contains: pkzip dmodname.zip *.

Do I need to be a programmer to write scripts?

Vegas Scripting FAQs
For the most part, yes. Although JScript .NET and VB .NET are relativly high level languages, it will be very difficult to write effective scripts without some computer programming experience. In fact, often scripts can be more difficult to write than typical C or C++ applications because the development tools and debugging facilities are not as advanced.

Do I need to be a programmer?

QML FAQ
No. It helps if you like to learn a thing or two about programming, but you don't have to for very straight-forward adventures.

What is C P D?

FAQ
Continuing Professional Development (CPD) enables professionals to enhance their managerial and technical abilities, whilst still in full-time employment. CPD programmes are designed to support the work of professionals by ensuring that they are kept up to date with developments in their field and made aware of cutting edge practice.

Do You Really Need to Hire That Programmer?

Are Medical Billing Problems Getting Any Better?
It's pretty hard to participate in today's online market if your company doesn't have the tools needed to compete. With new service oriented architectures (SOA), publishing companies are finding they are able to provide more than they thought possible. No one needs to point out that pictures say a thousand words but how are those words translated? When it comes to localizing your product in Japan, your company has to think, feel and react as if they were Japanese themselves.

Do I need to know C++ before Java?

Java and C++ are meant for two different purposes. Of course they are two widely used OOPLs (Object Oriented Programming Languages). Knowing one is not a prerequisite to another. However, C is the prerequisite to both these language as these two use the same control structures of C.

What Do I Need to Know Before I Write My Will?

American Legal Will FAQ
The first thing you should become familiar with are a few key terms that you need to understand as you create your will. These terms and their definitions are below: Will: A legal document which specifies how a person's assets are to be distributed after his or her death. - Testament: Also known as a Will Beneficiar:y One of the individuals named in the Will who will receive a part of the Testator's estate.

How do I know id I need to write a Will?

Ronnie Osborn for Probate Judge of DeKalb County, Alabama
Any amount of property which you own constitutes your estate. Generally, the size of your estate and your family circumstances determine whether you need a Will. An estate does not have to be any particular size to justify a Will. If you have young children, or property which you would like to assure will be given to certain people, then you should consider writing a Will.

How do I write graphics programs with Pacific C?

HI-TECH Software Frequently Asked Questions
I want to do some graphics programming with Pacific C, but I can't find graphics.h? Where is it? A. Pacific C is our freeware native DOS compiler, and it does not have any graphics libraries, hence there is no graphics.h. You will need to locate some suitable graphics library functions from somewhere else. There is a simple library located at http://www.cs.umb.edu/~vmay/myprograms.htm but we can't provide any help using it.Back to top error message occurred that the replacement of a file in .

How do I write assembler functions which can be called from C?

HI-TECH Software Frequently Asked Questions
How do I write assembler functions which can be called from C? A: The easiest way to learn how to do anything in assembler, is to write a simple version of it in C, then use the compiler to compile it to assembly. You can then use this output as a template to your routine. For example: Say you wanted to write an assembler routine which takes a "long" type as a parameter. Firstly, write the function in C: void MyAsmFunc(unsigned long parameter) { } Now compile it to assembly.

Graphic Library: How to write programs with ECO-C?

mct.net: FAQ - Frequently Asked Questions
Example: You want to use the display TLX1741 with the ZWERG332. Your program is called "main.c" and is located in the ECO-C folder. Then you compile as follws:

Graphic Library: How to write programs with WinECO-C?

mct.net: FAQ - Frequently Asked Questions
The library to use depends on your target. If you have a MEGA332 for example, the appropriate library is "libgraph.a" in the folder "lib/mega332". In addition the correct low-level functions must be compiled. If you use the display TLX1741, you must add the file "tlx1741.c" in the folder "libsrc/sysshare" to your project:

Why can't I bind \C-s and \C-q any more?

Z-Shell Frequently-Asked Questions
The control-s and control-q keys now do flow control by default, unless you have turned this off with stty -ixon or redefined the keys which control it with stty start or stty stop. (This is done by the system, not zsh; the shell simply respects these settings.) In other words, \C-s stops all output to the terminal, while \C-q resumes it. There is an option NO_FLOW_CONTROL to stop zsh from allowing flow control and hence restoring the use of the keys: put setopt noflowcontrol in your .

How much vitamin D do you need?

Bronze Age Tanning&Salon | Olympia, WA | Frequently Aske...
A 1997 report by the National Academy of Sciences Institute of Medicine recommends 200 IU/day of vitamin D for women aged 50 years or younger, 400 IU/day for those aged 51-70 and 600 IU/day for those older than 70 years. However, leading experts believe these recommendations are inadequate for protecting the public's health. According to these experts, the country faces an epidemic of vitamin D deficiency.

Do I need to be a programmer to use SunShop?

SunShop Shopping Cart Frequently Asked Questions
No. You can run SunShop without ever looking at the code. It is a plug and play application. After installation you will be able to maintain and edit your site via the administration area.
More Questions >>

© Copyright 2007-2012 QueryCAT
About • Webmasters • Contact