Search

Search

Search for
By user

Posts written by GreeN:



Truck
User
Be inspired from this http://fuckingmemesbams.com/happy-hump-day-meme/ I found a lot of interesting.
turnip1 said:
once you get the randomized player spawns thing so you can make it not random

I might be able to manage something. I should at any rate start by unifying the functions for singleplayer and multiplayer spawn points, then I might be able to figure out a system for placing spawn points in a more Counterstrike-like style. No guarantees.
turnip1 said:
i could possibly switch over full time if i like it.

Keep in mind that this program is not meant as a replacement for any other program you already have (with the exception of Automap). It is a generator, not an editor.
Well, as far as I know most of the standard entities (light, light_environment, func_wall, func_water, func_door, func_ladder) are supported by Counterstrike, and one of the posters on the VERC forums, wolf, said that the Half-Life textures were also compatible with Counterstrike. So although the program can't make Counterstrike-specific entities itself, you should be able to generate a 'bare' map (that is to say, no items, monsters, player spawns or chargers on the map) and then add any necessary Counterstrike entities manually. In fact, technically the info_player_start and info_player_deathmatch entities (the former without suits) generated by the program would work for Counterstrike CT and T spawn points too, however at the moment they're placed randomly with no consideration for teams. The layout of most of the generated maps also isn't very conducive for team play, although a desert with buildings in it might work out. You could also for example simply generate a building to place in an existing layout.
As far as I know, if there's a leak then the RAD is never run at all (because it can't calculate lighting properly when a leak is present). Since the RAD takes up by far most of the compile time, you end up with very quick compiles- but maps that don't have lighting.
turnip1 said:
This sounds nice. Is it somewhat user friendly yet? Or still in testing?

It's perpetually in testing and development, but that doesn't mean it can't be fun or useful in the meantime. And it's about as user-friendly as it's going to get, which is way short of ideal but (in my humble opinion) still good enough for the casual user- no worse than Half-Life's own developer console, at any rate. If you have Windows and Hammer, then by all means, try it out and let me know what you think.

EDIT: I should perhaps mention though that currently the program is only designed to support the original Half-Life. It is not able to create any of the entities specific to such games as Opposing Force, Counterstrike, Team Fortress Classic, etc, so anything that isn't in Half-Life, you'll have to add. I may implement Opposing Force and Counterstrike entities eventually, although I can't really test the latter as I haven't got Counterstrike installed.

EDIT: I just discovered a serious problem which, among other things, was causing very few shipping containers and mainframes to be created. Fixed version is up now.
Down Rodeo said:
Also, before it segfaulted, it wiped the previous file I had called "generated.map", which implies it opened it, failed a write maybe...?

That file is the only file the program outputs to, and it is always cleared and overwritten with a heading section (the specifications of the worldspawn entity) immediately when the program starts. Nothing else is created until the program knows what it's supposed to create, because it can't go back and fix anything that's already been generated.
Down Rodeo said:
I guess you open it not in append mode.

That's correct. If you want to save any generated content for later, you have to move the file or copy the content to another file before you run the program again.
Down Rodeo said:
I hadn't realised the only thing you were using windows.h for was changing the colours in the terminal...

Neither had I. I don't know what exactly is included in windows.h that isn't included in the other libraries I'm using. In any case, personally I find the text colors quite helpful in determining what's what in the console.
Down Rodeo said:
It allowed me to select maze, I put in its dimensions and it then segfaulted on me.

Now that I suspect is an issue either with your emulator or with something you did to the code accidentally before compiling it. The maze generator doesn't crash for me no matter what dimensions I put in, so long as they're valid integers.
Down Rodeo said:
I pressed 4, -1, 1000; after this whenever I tried to add things it added 0. I then tried to add pipes with a density of 100 at which point it gave me a stack overflow error.

Mm-hm. The problem is that the maximum random height of a warehouse is less than 2000, so when you have walls 1000 units thick, there's no space inside. You're right that I should make that 'safe', but you still would not get anything useful that way. Try a wall thickness of 1 instead; since there'll be nothing outside the map, the vis will still work fine on that if you try to compile it after.
Down Rodeo said:
the exe, when ran in Wine, divided by zero somewhere.

Is it a consistent error? If so, I may be able to explain and/or fix it. Bug reports are welcome.
Down Rodeo said:
It's amazing how much Windows jams into executables... There are a few file paths in there.

The filepaths are all relative and should work fine (at least on any Windows system...I know nothing about WINE) provided you don't move the EXE and the folder away from each other, or restrict permissions on any of the files the program uses (including the output MAP file).

EDIT: I modified it slightly. I have honestly no idea whether it will help, but you can try it.
*works up the courage to post*

Hi people!

I posted a similar thread to this in the VERC forums back in January, so some of you (particularly Killer-Duck, I recall he was there) may recognize me. I realize this here is a rather tight-knit community, so I hope I'm not barging in, or breaking any rules or customs by posting a thread that one, isn't asking for help, two, is a near duplicate of one I posted on the VERC forums, and three, mostly comes down to advertising. Yes, I admit it. So if you don't like advertising and/or have no interest in 3D procedural content generation, don't read any further.

Over the past few months, I've been writing a Half-Life 1 map and map component generator in C++. Although my original intention was just to be able to place random crates and shipping containers and stuff in a room, I kept writing more and more functionality into the program until by now it is over 8000 lines long (making it one of the longest programs I've ever written, in any language) and quite sophisticated. The reason I wanted to post about it here, of course, is that this site is the home of the Freshmap and Automap programs, so I'm hoping that the people here are the kind of people who would both be interested in my program and would be able to give me evaluations and suggestions from the most experienced viewpoints.

Unfortunately, I have no idea how to use the Windows GUI with C++, and so my generator relies on a command line interface; that is to say, it looks like the Windows command prompt, only a little more colorful. That said, though, from my limited knowledge of Automap and Freshmap, I would guess that by now my generator is probably the more advanced program, but it does have a few obvious drawbacks (although I hope to correct many of them in the future) and is probably less reliable as well as having worse usability. I also don't know exactly what operating systems it will work on, other than that it runs fine on Windows XP and Windows Vista.

With all that said, for those of you who don't find typing numbers into a console too tedious, here's the link to the ZIP on box.net:

http://www.box.net/shared/34b9x7itub

Hopefully the above URL will remain the same for the foreseeable future. However, if it changes, the updated link should be available on the downloads page on my website:

http://green-meklar.110mb.com/Downloads.html

So, what are your thoughts? Really disappointing? Totally awesome and I should post about it on Snarkpit too? Difficult to use? Needs such-and-such added to it? Doesn't run on [insert operating system here]? Kinda cool, but anything SuperJer writes will always be better? I'm hoping to get some decent feedback so that I can improve the program in the most effective directions, although keep in mind that I'm neither a Hammer expert nor a C++ expert and so there are some limits as to what I'm able to do.
User
hey, everything went great... thanks for the help i really do admire it.. thanks so much! ttys..
-Spence
User
ok i will work on some of that shit and post back and tell you if it went good.. thanks
User
4096 was the original.. but after about 300 feet in the map the sight distance would cut out.
User
Down Rodeo said:
Yeah, it should be just slightly offset so that it isn't in or on any walls or anything.

And, map->map properties->max viewable distance.



like 6 or 7 thousand ok? should that be fine for a LARGE map?
User
ok, maybe that is the problem.. i will tell you if it work or not.. thanks, you guys really helped a lot.. sorry for all the questions.. i have been troubleshooting every problem i have sometimes it works sometimes it doesnt, im still new to it and this is a HUGE map.. i will figure out all the shit soon..
User
when you place a light on a wall does it have to be moved away from the wall a bit like suspened in the air for it to work properly for all of them?
User
well, i changed the environment light source and it does make a difference, but when i place lights in the rooms for some reason it will only show a max of 3 of them through out the map.. like it has been set for only 3... is that something i can change. i learn quick but there are things that i havnt learned yet...
User
ok, but could you explain a little more? im still new.. lol
User
ok i did the clip button on all the angles and it worked! the map compiled but i put in more than 3 light sources around the map like in the rooms of the buildings and they didnt show up like they were deleted.. is there somewhere were i can change the amount of lights able to put into the map? and can you set it so that way when you are far away you wont see the environment around the map.. like in the distances you can see everything? if you are far away some of the map cuts out
User
ok i went and found all the brushes that it mentioned in the error log, and they are all the ones that i made a slant, they are perfect slants and dont cross over or in the other brushes.. so the verdict next in line is?
User
my map was at the edge of the map, but when i moved it over to the middle, it was still not compiling it right...
User
hey, im pretty new to valve hammer and this is my second map, my first one went ok, this one, not so much cause its more complex.. when i goto compile it this is what i get
hlcsg: Error: Entity 0, Brush 2, Side 3: plane with no normal

hlcsg: Error: plane with no normal
Description: The map has a problem which must be fixed
Howto Fix: Check the file ZHLTProblems.html for a detailed explanation of this problem


hlcsg: Error: Entity 0, Brush 2: outside world(+/-4096): (128,-10000,576)-(192,10000,640)

hlcsg: Error: Entity 0, Brush 2: outside world(+/-4096): (112,-10016,540)-(208,10016,676)

hlcsg: Error: Entity 0, Brush 2: outside world(+/-4096): (96,-10032,544)-(224,10032,672)

hlcsg: Error: Entity 0, Brush 2: outside world(+/-4096): (112,-10016,558)-(208,10016,658)

hlcsg: Error: Entity 0, Brush 4, Side 2: plane with no normal

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (0,-10000,576)-(10000,10000,7359)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (0,-10000,576)-(10000,10000,7359)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (0,-10000,576)-(10000,10000,7359)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-16,-10016,540)-(10016,10016,7395)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-16,-10016,540)-(10016,10016,7395)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-16,-10016,540)-(10016,10016,7395)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-32,-10032,544)-(10032,10032,7391)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-32,-10032,544)-(10032,10032,7391)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-32,-10032,544)-(10032,10032,7391)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-16,-10016,558)-(10016,10016,7377)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-16,-10016,558)-(10016,10016,7377)

hlcsg: Error: Entity 0, Brush 4: outside world(+/-4096): (-16,-10016,558)-(10016,10016,7377)

hlcsg: Error: Entity 0, Brush 9, Side 2: plane with no normal

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1024,-10000,832)-(10000,10000,3449)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1024,-10000,832)-(10000,10000,3449)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1040,-10016,796)-(10016,10016,3485)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1040,-10016,796)-(10016,10016,3485)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1056,-10032,800)-(10032,10032,3481)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1056,-10032,800)-(10032,10032,3481)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1040,-10016,814)-(10016,10016,3467)

hlcsg: Error: Entity 0, Brush 9: outside world(+/-4096): (-1040,-10016,814)-(10016,10016,3467)

hlcsg: Error: Entity 0, Brush 10: outside world(+/-4096): (496,-4112,-36)-(784,-3888,1124)

hlcsg: Error: Entity 0, Brush 10: outside world(+/-4096): (480,-4128,-32)-(800,-3872,1120)

hlcsg: Error: Entity 0, Brush 10: outside world(+/-4096): (496,-4112,-18)-(784,-3888,1106)

hlcsg: Error: Entity 0, Brush 11: outside world(+/-4096): (240,-4112,-36)-(528,-3888,1124)

hlcsg: Error: Entity 0, Brush 11: outside world(+/-4096): (224,-4128,-32)-(544,-3872,1120)

hlcsg: Error: Entity 0, Brush 11: outside world(+/-4096): (240,-4112,-18)-(528,-3888,1106)

hlcsg: Error: Entity 0, Brush 12: outside world(+/-4096): (-16,-4112,-36)-(272,-3888,1124)

hlcsg: Error: Entity 0, Brush 12: outside world(+/-4096): (-32,-4128,-32)-(288,-3872,1120)

hlcsg: Error: Entity 0, Brush 12: outside world(+/-4096): (-16,-4112,-18)-(272,-3888,1106)

hlcsg: Error: Entity 0, Brush 13, Side 2: plane with no normal

hlcsg: Error: Entity 0, Brush 13, Side 3: plane with no normal

hlcsg: Error: Entity 0, Brush 13, Side 3: has a coplanar plane at (1152, -3520, 0), texture WALL_ROCK01

hlcsg: Error: Entity 0, Brush 13, Side 5: plane with no normal

hlcsg: Error: Entity 0, Brush 13, Side 5: has a coplanar plane at (832, -3520, 0), texture WALL_ROCK01

hlcsg: Error: Entity 0, Brush 13, Side 5: has a coplanar plane at (832, -3520, 0), texture WALL_ROCK01

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10000,-3520,0)-(10000,10000,8831)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10000,-3520,0)-(10000,10000,8831)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10000,-3520,0)-(10000,10000,8831)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10016,-3536,-36)-(10016,10016,8867)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10016,-3536,-36)-(10016,10016,8867)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10016,-3536,-36)-(10016,10016,8867)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10032,-3552,-32)-(10032,10032,8863)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10032,-3552,-32)-(10032,10032,8863)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10032,-3552,-32)-(10032,10032,8863)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10016,-3536,-18)-(10016,10016,8849)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10016,-3536,-18)-(10016,10016,8849)

hlcsg: Error: Entity 0, Brush 13: outside world(+/-4096): (-10016,-3536,-18)-(10016,10016,8849)

hlcsg: Error: Entity 0, Brush 15: outside world(+/-4096): (1264,-4112,-36)-(1424,-3952,484)

hlcsg: Error: Entity 0, Brush 15: outside world(+/-4096): (1248,-4128,-32)-(1440,-3936,480)

hlcsg: Error: Entity 0, Brush 15: outside world(+/-4096): (1264,-4112,-18)-(1424,-3952,466)

hlcsg: Error: Entity 0, Brush 16: outside world(+/-4096): (-656,-4112,-36)-(-496,-3952,484)

hlcsg: Error: Entity 0, Brush 16: outside world(+/-4096): (-672,-4128,-32)-(-480,-3936,480)

hlcsg: Error: Entity 0, Brush 16: outside world(+/-4096): (-656,-4112,-18)-(-496,-3952,466)

hlcsg: Error: Entity 0, Brush 17: outside world(+/-4096): (752,-4112,-36)-(1296,-3888,868)

hlcsg: Error: Entity 0, Brush 17: outside world(+/-4096): (736,-4128,-32)-(1312,-3872,864)

hlcsg: Error: Entity 0, Brush 17: outside world(+/-4096): (752,-4112,-18)-(1296,-3888,850)

hlcsg: Error: Entity 0, Brush 18: outside world(+/-4096): (-528,-4112,-36)-(16,-3888,868)

hlcsg: Error: Entity 0, Brush 18: outside world(+/-4096): (-544,-4128,-32)-(32,-3872,864)

hlcsg: Error: Entity 0, Brush 18: outside world(+/-4096): (-528,-4112,-18)-(16,-3888,850)

hlcsg: Error: Entity 0, Brush 21: outside world(+/-4096): (1392,-4112,-36)-(1680,-3504,484)

hlcsg: Error: Entity 0, Brush 21: outside world(+/-4096): (1376,-4128,-32)-(1696,-3488,480)

hlcsg: Error: Entity 0, Brush 21: outside world(+/-4096): (1392,-4112,-18)-(1680,-3504,466)

hlcsg: Error: Entity 0, Brush 24: outside world(+/-4096): (-912,-4112,-36)-(-624,-3504,484)

hlcsg: Error: Entity 0, Brush 24: outside world(+/-4096): (-928,-4128,-32)-(-608,-3488,480)

hlcsg: Error: Entity 0, Brush 24: outside world(+/-4096): (-912,-4112,-18)-(-624,-3504,466)

hlcsg: Error: Entity 0, Brush 80, Side 2: plane with no normal

hlcsg: Error: Entity 0, Brush 80, Side 3: plane with no normal

hlcsg: Error: Entity 0, Brush 80, Side 3: has a coplanar plane at (2048, 896, 0), texture STONE2

hlcsg: Error: Entity 0, Brush 80, Side 4: plane with no normal

hlcsg: Error: Entity 0, Brush 80, Side 4: has a coplanar plane at (-2048, 1284, -223), texture STONE2

hlcsg: Error: Entity 0, Brush 80, Side 4: has a coplanar plane at (-2048, 1284, -223), texture STONE2

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10000,-9692,-223)-(10000,1284,5370)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10000,-9692,-223)-(10000,1284,5370)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10000,-9692,-223)-(10000,1284,5370)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10016,-9708,-259)-(10016,1300,5406)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10016,-9708,-259)-(10016,1300,5406)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10016,-9708,-259)-(10016,1300,5406)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10032,-9724,-255)-(10032,1316,5402)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10032,-9724,-255)-(10032,1316,5402)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10032,-9724,-255)-(10032,1316,5402)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10016,-9708,-241)-(10016,1300,5388)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10016,-9708,-241)-(10016,1300,5388)

hlcsg: Error: Entity 0, Brush 80: outside world(+/-4096): (-10016,-9708,-241)-(10016,1300,5388)

hlcsg: Error: Entity 0, Brush 116: outside world(+/-4096): (-3088,-4112,-292)-(3088,912,36)

hlcsg: Error: Entity 0, Brush 116: outside world(+/-4096): (-3104,-4128,-288)-(3104,928,32)

hlcsg: Error: Entity 0, Brush 116: outside world(+/-4096): (-3088,-4112,-274)-(3088,912,18)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (170,-10000,1024)-(7577,10000,6591)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (170,-10000,1024)-(7577,10000,6591)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (170,-10000,1024)-(7577,10000,6591)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (154,-10016,988)-(7593,10016,6627)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (154,-10016,988)-(7593,10016,6627)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (154,-10016,988)-(7593,10016,6627)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (138,-10032,992)-(7609,10032,6623)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (138,-10032,992)-(7609,10032,6623)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (138,-10032,992)-(7609,10032,6623)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (154,-10016,1006)-(7593,10016,6609)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (154,-10016,1006)-(7593,10016,6609)

hlcsg: Error: Entity 0, Brush 142: outside world(+/-4096): (154,-10016,1006)-(7593,10016,6609)

hlcsg: Error: Entity 0, Brush 143: outside world(+/-4096): (240,-4112,1052)-(528,-3888,1125)

hlcsg: Error: Entity 0, Brush 143: outside world(+/-4096): (224,-4128,1056)-(544,-3872,1121)

hlcsg: Error: Entity 0, Brush 143: outside world(+/-4096): (240,-4112,1070)-(528,-3888,1107)

hlcsg: Error: Entity 0, Brush 144: outside world(+/-4096): (496,-4112,860)-(784,-3888,1124)

hlcsg: Error: Entity 0, Brush 144: outside world(+/-4096): (480,-4128,864)-(800,-3872,1120)

hlcsg: Error: Entity 0, Brush 144: outside world(+/-4096): (496,-4112,878)-(784,-3888,1106)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-242,-10000,776)-(9478,10000,3322)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-242,-10000,776)-(9478,10000,3322)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-258,-10016,740)-(9494,10016,3358)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-258,-10016,740)-(9494,10016,3358)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-274,-10032,744)-(9510,10032,3354)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-274,-10032,744)-(9510,10032,3354)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-258,-10016,758)-(9494,10016,3340)

hlcsg: Error: Entity 0, Brush 145: outside world(+/-4096): (-258,-10016,758)-(9494,10016,3340)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1272,-10000,-1507)-(9939,10000,710)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1272,-10000,-1507)-(9939,10000,710)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1256,-10016,-1543)-(9955,10016,746)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1256,-10016,-1543)-(9955,10016,746)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1240,-10032,-1539)-(9971,10032,742)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1240,-10032,-1539)-(9971,10032,742)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1256,-10016,-1525)-(9955,10016,728)

hlcsg: Error: Entity 0, Brush 146: outside world(+/-4096): (1256,-10016,-1525)-(9955,10016,728)

hlcsg: Error: Entity 0, Brush 155: outside world(+/-4096): (256,-4096,1088)-(512,-3904,1152)

hlcsg: Error: Entity 0, Brush 155: outside world(+/-4096): (240,-4112,1052)-(528,-3888,1188)

hlcsg: Error: Entity 0, Brush 155: outside world(+/-4096): (224,-4128,1056)-(544,-3872,1184)

hlcsg: Error: Entity 0, Brush 155: outside world(+/-4096): (240,-4112,1070)-(528,-3888,1170)

hlcsg: Error: Entity 0, Brush 157: outside world(+/-4096): (-3088,-4112,-36)-(-2928,2576,1700)

hlcsg: Error: Entity 0, Brush 157: outside world(+/-4096): (-3104,-4128,-32)-(-2912,2592,1696)

hlcsg: Error: Entity 0, Brush 157: outside world(+/-4096): (-3088,-4112,-18)-(-2928,2576,1682)

hlcsg: Error: Entity 0, Brush 158: outside world(+/-4096): (2928,-4112,-36)-(3088,2576,1700)

hlcsg: Error: Entity 0, Brush 158: outside world(+/-4096): (2912,-4128,-32)-(3104,2592,1696)

hlcsg: Error: Entity 0, Brush 158: outside world(+/-4096): (2928,-4112,-18)-(3088,2576,1682)

hlcsg: Error: Entity 0, Brush 160: outside world(+/-4096): (-2960,-4112,-36)-(2960,-4079,1700)

hlcsg: Error: Entity 0, Brush 160: outside world(+/-4096): (-2976,-4128,-32)-(2976,-4063,1696)

hlcsg: Error: Entity 0, Brush 160: outside world(+/-4096): (-2960,-4112,-18)-(2960,-4079,1682)

hlcsg: Error: Entity 0, Brush 163: outside world(+/-4096): (-3088,-4112,1628)-(3088,2576,1764)

hlcsg: Error: Entity 0, Brush 163: outside world(+/-4096): (-3104,-4128,1632)-(3104,2592,1760)

hlcsg: Error: Entity 0, Brush 163: outside world(+/-4096): (-3088,-4112,1646)-(3088,2576,1746)

hlcsg: Error: Entity 0, Brush 164: outside world(+/-4096): (-3088,-4112,-36)-(-2928,2576,1700)

hlcsg: Error: Entity 0, Brush 164: outside world(+/-4096): (-3104,-4128,-32)-(-2912,2592,1696)

hlcsg: Error: Entity 0, Brush 164: outside world(+/-4096): (-3088,-4112,-18)-(-2928,2576,1682)

hlcsg: Error: Entity 0, Brush 165: outside world(+/-4096): (2928,-4112,-36)-(3088,2576,1700)

hlcsg: Error: Entity 0, Brush 165: outside world(+/-4096): (2912,-4128,-32)-(3104,2592,1696)

hlcsg: Error: Entity 0, Brush 165: outside world(+/-4096): (2928,-4112,-18)-(3088,2576,1682)

hlcsg: Error: Entity 0, Brush 167: outside world(+/-4096): (-2960,-4112,-36)-(2960,-4079,1700)

hlcsg: Error: Entity 0, Brush 167: outside world(+/-4096): (-2976,-4128,-32)-(2976,-4063,1696)

hlcsg: Error: Entity 0, Brush 167: outside world(+/-4096): (-2960,-4112,-18)-(2960,-4079,1682)

hlcsg: Error: Entity 0, Brush 170: outside world(+/-4096): (-3088,-4112,1628)-(3088,2576,1764)

hlcsg: Error: Entity 0, Brush 170: outside world(+/-4096): (-3104,-4128,1632)-(3104,2592,1760)

hlcsg: Error: Entity 0, Brush 170: outside world(+/-4096): (-3088,-4112,1646)-(3088,2576,1746)

hlcsg: Error: Entity 2, Brush 0, Side 4: plane with no normal

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (832,-10000,0)-(1152,-3200,6800)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (832,-10000,0)-(1152,-3200,6800)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (816,-10016,-36)-(1168,-3184,6836)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (816,-10016,-36)-(1168,-3184,6836)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (800,-10032,-32)-(1184,-3168,6832)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (800,-10032,-32)-(1184,-3168,6832)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (816,-10016,-18)-(1168,-3184,6818)

hlcsg: Error: Entity 2, Brush 0: outside world(+/-4096): (816,-10016,-18)-(1168,-3184,6818)




can anyone help me out...
thanks
-Spence
User
i have flash so now wat do i do?
User
how do u start?? where do i extract the file that i downloaded from mcdiddy's playkit site? and then wat do i open to start?
User
yes it does i just tried it
User
i think you have to make the grid size a lot smaller and then make the things smaller so everything will fit
User
I dont know where to get new textures that didnt come with my hammer and install them into hammer. When i go in my valve hammer editor file there is no file that says textures.