I admit it...I am an extreme MOHAA Mapping newbie...But I am having a problem inserting a player start to test my first "experiment".
I've read several tutorials, and when I right-click the 2D area (with everything de-selected) the "info" item IS NOT THERE! The list goes from "fx" to "interactobject" to "item" to "lamp".
Also missing from the list: Light!
and FINALLY, when I re-open my map, ALL textures are gone...even the caulk textures are either black or grey....
does ANYONE know what is going on here? is it something I'm doing wrong?
Player Start...plus
Moderator: Moderators
-
FireWalker333
- Private
- Posts: 3
- Joined: Sun Mar 05, 2006 5:49 pm
Player Start...plus
~keep yer head down,
yer ears open,
an' yer finger on the trigger
FireWalker
yer ears open,
an' yer finger on the trigger
FireWalker
endef
Move the file named entdef.pk3 from MOHAATools to MOHAA/main.
Also, make sure the paths in File/Project Settings are correct. Here is what mine look like.
Basepath: C:\Program Files\EA GAMES\MOHAA\
Mapspath: C:\Program Files\EA GAMES\MOHAA\maps\tltrude\
Autosavepath: C:\Program Files\EA GAMES\MOHAA\maps\tltrude\
I have autosave turned off so, if you use it, it should probably be set to a different folder than the mapspath. As you can see, I use a folder named tltrude to store my .map files in. But, you can use any name, and the folder can be anywhere you like. The basepath is wherever mohaa.exe is located.
Also, make sure the paths in File/Project Settings are correct. Here is what mine look like.
Basepath: C:\Program Files\EA GAMES\MOHAA\
Mapspath: C:\Program Files\EA GAMES\MOHAA\maps\tltrude\
Autosavepath: C:\Program Files\EA GAMES\MOHAA\maps\tltrude\
I have autosave turned off so, if you use it, it should probably be set to a different folder than the mapspath. As you can see, I use a folder named tltrude to store my .map files in. But, you can use any name, and the folder can be anywhere you like. The basepath is wherever mohaa.exe is located.
Last edited by tltrude on Mon Mar 06, 2006 3:47 am, edited 2 times in total.
SDK
Yes, it is different. It is already in Spearhead as a folder named "code"--in one of the games pk3s, I think. But, Mohaa uses entdef.pk3 which also contains a "code" folder.
Btw, the code folder has files with names like these:
PlayerStart.cpp
Trigger.cpp
Windows.cpp
Doors.cpp
Barrels.cpp
explosions.cpp
All the entities! They are text files and can be modified somewhat. Here is an example.
I have only had limited sucsess with this one--couldn't get it to follow a path.
Btw, the code folder has files with names like these:
PlayerStart.cpp
Trigger.cpp
Windows.cpp
Doors.cpp
Barrels.cpp
explosions.cpp
All the entities! They are text files and can be modified somewhat. Here is an example.
Code: Select all
/*QUAKED func_fallingrock (0.75 0.65 0.1) ? AUTO_RESET NO_RANDOMNESS REMOVE_ON_GROUND
Scorpios comments/information:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Description:
------------
Creates a rock that, when triggered, begins falling and bounces along a path specified by targetname. Use info_waypoint for the path.
Values:
=======
"targetname" the path to follow.
"dmg" how much damage to cause creatures it hits (default 20).
"speed" how fast to move (default 200).
"wait" how long to wait before falling when triggered (default 0).
"noise" sound to play when rock touches the world
"start" Starts rock falling.
"bounce" sent to entity when touched.
AUTO_RESET - when done falling, automatically return to the start
NO_RANDOMNESS - don't use any randomness when making the rocks fall
REMOVE_ON_GROUND - remove the rocks when done.
*****************************************/
-
FireWalker333
- Private
- Posts: 3
- Joined: Sun Mar 05, 2006 5:49 pm
-
FireWalker333
- Private
- Posts: 3
- Joined: Sun Mar 05, 2006 5:49 pm

