Advertisement
Guest User

Untitled

a guest
May 9th, 2013
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. http://en.wikibooks.org/wiki/Q3Map2
  2.  
  3. hjaelp: / og \ er det samme i cmd.exe
  4.  
  5. hjaelp: q3 kan ogsaa vaere q3a (ved ikke)
  6. hjaelp: -game <quake3|wolf|et|etut|ef|jk2|ja|sof2|tenebrae|qfusion>
  7.  
  8.  
  9. Decompiling into a .map
  10.  
  11. Q3Map2 can decompile a .bsp into a .map. This procedure is by no means perfect, and you should never take anything from others maps, but decompiling is map is good to "see how it's done".
  12. 1.Put the .bsp that you want to decompile into the same directory as q3map2.exe
  13. 2.Open the command prompt and browse to the folder which contains the .bsp and q3map2.exe
  14. 3.Type
  15.  
  16.  
  17. eksempel:
  18.  
  19. q3map2 -game [game abbreviation] -convert -format map [name of the bsp file].bsp
  20.  
  21. *So if the .bsp is called testmap.bsp and you use Jedi Academy, you use this:
  22.  
  23. q3map2 -game ja -convert -format map testmap.bsp
  24. (q3map2 -game q3 -convert -format map mapname.bsp)
  25.  
  26. *You should then find a .map in the same folder as q3map2.exe and the .bsp.
  27.  
  28.  
  29.  
  30. -----
  31.  
  32.  
  33.  
  34. All previous answers are correct.
  35. I'll just simplify it by doing it in single lines...
  36.  
  37. First, let's assume your *Insert Name* is 'YOURNAME'
  38. 1. Start > Run
  39. Type "cmd" (without the quotes) then press {Enter} or press [OK]
  40. A black window should appear with the a blinking cursor
  41. 2. Type "cd\users\YOURNAME\My Documents" (without the quotes) then press {Enter}
  42. The text prompt should be changed to what you have typed
  43.  
  44. To see the files in that directory, type "dir" (without the quotes) and press {Enter}
  45. To know how to use other switches of "dir" command, type "dir /?" (without the quotes)
  46.  
  47. To rename a file, say there's a file called 'myfile.txt', type "ren myfile.txt myrenamedfile.abc" (without the quotes) then press {Enter}
  48. It is now named 'myrenamedfile.abc'
  49. type "dir" (without the quotes) then {Enter} to see if it is
  50.  
  51. To copy a file (or files) to another directory (or to another filename), type "copy myrenamedfile.abc mycopiedfile.log" (without the quotes) then press {Enter}
  52. To know how to use other switches of "copy", type "copy /?" (without the quotes)
  53. type "dir" (without the quotes) then {Enter} to see
  54.  
  55. To delete a file, type "del /?" (without the quotes) then {Enter} to see how to use it
  56.  
  57. Cheers!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement