Search 5,000,000+ questions and answers.

Frequently Asked Questions

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.
Related 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.
Related Questions

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.
Related Questions

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.
Related Questions

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 *.
Related Questions

What tools will I need?

Frequently Asked Questions And Their Answers
NONE. No tools needed . We have designed our garage screen for simple installation. No long complicated instructions. It is easy as 1,2,3 GUARANTEED! No problem. Our screens were carefully designed to accommodate most standard door sizes. We designed our screens to be flexible enough to fit openings that may be a few inches shorter or narrower.
Related Questions

What tools are used to create BitWise?

BitWise IM - FAQ
Creating BitWise for 3 operating systems requires a large number of tools. Here is a list of the major tools used: BitWise, including the client, server and the website, are written in a variety of languages, including C, C++, Perl, php and mySQL.
Related Questions

What tools are used to create CoP2P?

Frequently Asked Questions
Creating CoP2P on three different operating systems is no small task. We use a variety of tools to do our work: CoP2P is written using a mixture of C++, C, php(for authentication of users login), and, of course, database queries.
Related Questions

Q Do I need specialist tools?

Storm Warrior - FAQ's and General Info
A A set of spanners, socket set, hacksaw, 41/2 disc cutter mig welder would be good, but not essential
Related Questions

What tools do I need to create a FAQ?

GameFAQs - Help
Good communication skills. While everyone tends to make spelling and grammar mistakes on occasion, guides that are hard to read aren't nearly as helpful. Guides that are intentionally hard to read (i.e. ALL CAPS, no caps, constant misspelled words and grammar errors) won't be posted. A computer with a text editor or word processor.
Related Questions

Will any mod tools ship with the game?

Empire Earth Aeon - Covering Empire Earth & Empires
According to HomeLAN Fed, Empire Earth 2 will ship with mod tools, but this has not been officially confirmed.
Related Questions

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.
Related Questions

What kinds of tools do you use to create your carvings?

Frequently Asked Questions
I would have to say that 90% of the work is done with a chainsaw. I also use electric chisels, hand chisels, dremel tools, die grinders, sanders, and torches! If you're interested in knowing which brands I prefer, look for a product commentary and review page I'll be posting to the website in the near future!
Related Questions

Q. Do I need some type of mod to play PS2 backups or imports?

Ultimate PS2 FAQ - XTREME-SOURCE
Yes- You cannot boot PS2 backups without a modification, either a software mod or hardware mod!!! Do not ask about this in the forums!!! You need a modchip: Lord Sesshomaru's PS2 Modchip FAQ Swap Magic: Welcome to Swap Magic 3 Official Web Site Memory Card Exploit (Doesn't work with v.11 PS2 and later): How to make your own Memory Card Exploit using the Independence Installer HD Loader: http://www.hdloader.com.au/hardinstall#prepare or
Related Questions

Is it hard to create my own MOD?

Postal Network - Postal 2 > F.A.Q. ::
Depends on your skills. If you're interested in making your own levels then you should be familiarized with the Unreal Editor, although the new editor is somewhat different. Get Unreal Tournament and start fooling around with it's level editor. If you are rather interested in creating a Total Conversion then a lot of things needs to be done like creating new character models, new sounds and lots of coding. If you're a newbie in these domains then maybe you should try looking for info and help.
Related Questions

What do I need to know before starting to create a Half-Life MOD?

botman's bots
The Half-Life SDK is written in a computer programming language called C++. You need to have a fairly good understanding of how to write software using the C++ programming language. If you are unfamiliar with C++, you can start by purchasing some books on C++ programming to become more familiar with the C++ programming language. You need to know how to use the C++ compiler you will be using to build the DLL files.
Related Questions

Do I need to use synchronized on setValue(int)? Q: How do I create a Runnable with inheritance?

Code Style: Java threads frequently asked questions (FAQ)
To introduce a Runnable type to an existing class hierarchy, you need to create a sub-class that declares that it implements the Runnable interface, and provide a run method to fulfil the interface. This combination of interface and inheritance means that runnable implementations can be very minor extensions of existing classes, as in the example below..
Related Questions

What tools do I need to cut Plexiglas?

Car Audio Installation FAQs - WikiFAQ - Answers to Frequentl...
A good quality Carbide Tipped Triple Chip saw blade is preferred when cutting Plexiglas. This reduces the amount of chipout on the opposite side of the material and produces a smooth edge. A Router can be used to cut Plexiglas as well. The Router should be at least 1.5 HP or better and with changeable collets for a 0.5" Shank quality 2 flute Carbide bit. This reduces the vibration and chattering when cutting and will produce a more smooth edge.
Related Questions

What tools will I need to assemble the greenhouse?

Solexx Greenhouse FAQ, frequently asked questions
Assembling a Solexx Greenhouse is takes just a few readily available tools. You will need a screwdriver, variable speed drill, sharp knife or utility knife, tape measure, step ladder, GE Silicon-2 caulk, caulking gun, clear PVC glue and a level. I am interested in your Solexx polycarbonate covering. How do you install it? Our specially formulated Solexx greenhouse panels are actually a polyethylene blend.
Related Questions

What SEEM do I need to mod?

Frequently Asked Questions
That said, many ? NOT ALL ? SEEM mods work for the V3x as they do for the V3. Visit http://www.xlr8.us/hofo and read. Upload your desired 96x80 cl.gif, using the program of your choice, to /a/mobile (not /a/mobile/system). Open LeaderGL FlexEditor and go to Struments -> SEEM Explorer. (Or use another SEEM editor you like). Load the SEEM you downloaded into LeaderGL, then save it to the phone as SEEMs 0061_0001 and 0062_0001. Now load SEEM 004a_0001 from the phone, and find offset 27.
Related Questions

Who can create tools?

SkylineGlobe: Frequently Asked Questions
Everyone! Anyone with basic development or web-development experience can develop SkylineGlobe tools and publish them to other members. The tools can be offered to everyone or to paying customers based of a revenue split between the developer and Skyline.
Related Questions

Q. Do I need a mod chip for the PS-X-Change Boot CD to work?

FAQ
No. You do not need a Mod Chip for the PS-X-Change Boot CD to work. Just put the PS-X-Change Boot CD into the PlayStation and start playing your back up and import games.
Related Questions

Q-Should I bring my own tools?

FAQ
A-It is not necessary to bring any tools, though you may bring your own if you wish. Labeling is not a bad idea for your tools.
Related Questions

Do I need to farm in Dorf Mod?

Illicit Awakening
No, all the standard gear is sold at the traders. The only drop-only items are S grade weapons, which drop from the Bosses. You can find more information about items on dorf mod on the items page.
Related Questions

d. How do I create my own name servers?

Note: you can create as many name servers you'd like, but each server must resolve to a unique IP address. Also note: the ???Register a Name Server??? and ???Modify a Name Server??? pages will not list the name servers you have created.
Related Questions

Can I become a Mod or Admin?

Frequently Asked Questions
Laska chooses all mods and admins, usually out of longtime players who are active, helpful, and older. People who ask never get the job.
Related Questions

Can I be a mod?

ProBoards? Support - READ FIRST: FREQUENTLY ASKED QUESTIONS
Yes you can change the colour of the scrollbar. Go to this scrollbar generator, and try out a few colors, and they'll give you the code to put into your headers. These are a few sites that list some of the most commonly used hexidecimal colours that can be used to change the colours of your forums.
Related Questions

Q: do I need to buy special fittings for my pneumatic tools?

Turanair - text only
A: the quick-connect fitting that comes with your purchase is already attached to the regulator and has a universal coupling that fits long and short couplings on most all of your air tools. please call customer service for special requests at 954-428-4500.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact