Jump to content
xisto Community

l337 Nurse Pedestrian

Members
  • Content Count

    114
  • Joined

  • Last visited

Everything posted by l337 Nurse Pedestrian

  1. I recently got Half-Life2, and despite all the trouble of the wretched Steam, it's fun (even though I'm runnin on dial-up). Anywho, I've played it a bit, and now I'm stuck. It's after the area where you go inside the house, and you get the rocket to destroy the incoming ship. Then you take the go kart-looking thing around the beach, then there's this one place where it's like a small town above and there's aliens on the beach. You go up the ramp and you shoot the guys. It's the place where the crane is. I don't know what to do there. Can anyone help?
  2. I use dreamweaver. I think it's pretty handy and expensive. Well at least Dreamweaver MX, I've had some problem with Dreamweaver 4. I use it fine, no problems really. I mean as long as I can create pages, I'm fine. I don't need any Mega-Ultra Webpage designing super program. It contains pretty much anything you want as far as designing web pages, and the results are great. I make my site in Dreamweaver.
  3. Now what does that actually do? That just changes your rank, right? I want just a posting character minimum for the post to be accepted, or top be posted, not to promote members.
  4. Okay, I've got a new IPB, and everything's fine, except I want to know how to create a character minimum for each post to be accepted. Could anyone show me how? I'd like it different for each forum. Any help would be appreciated.
  5. G4TechTVFox5 (in virginia)StarzI watch Fox for the news, G4Tech for...everything else.Starz, usually Friday/Saturday nights they have a good movie on.
  6. I know alot of people who are chubby or are carrying unneeded weight around. Well here's some ways you can get rid of that, and it's not something stupid like "Take Mega-Pill and the fat just burns off,".What you will need:A fruit basketA TVHobbieslegsexpensive equipment----------------------What you won't need:Zantrex 3LeptoprinRelacoreany other fat loss pilla scale Ok first of all, don't kid yourself, don't say "Yeah I can do this" and expect the flab to just come off, it requires work. This is a few ways you can lose weight. First if you have a Ps2 or Xbox, get Dance Dance Revolution. It's a very good game and an excersize machine. Too many people spend money on something like a Bow-flex, and after a week, they are too lazy to use it. DDR is cheap, the games is about 40 bucks and the Dance Mat is about 15 dollars. Also you'll need a TV to play DDR. Next you'll need hobbies, anything will do, except eating. Having a hobby is an alternative to over eating. Next is the fruit basket, that's more of a symbol. What I mean is, pick out some foods that are low in fat. Some people will look at the back of the food box and it says X amount of calories, then you think "that's not alot, I'll eat the whole box", but what you also need to realise is the 'amount per serving' label. That's another thing that's tricky. You can still have snacks, like ice cream and cookies, just limit yourself. You also should listen to the FDA's food pyramid, and eat the right amount of food from each group. Basically, you can still eat what you want, just limit yourself. Also avoid getting expensive equipment, like mentioned above. The most you'd probably want to buy is some bar bells. 5 out of 7 days, you should play DDR, I personally think you should do 3 sets of songs (9 songs total), and work at your own level. Also you should eat only Breakfast, Lunch, Dinner and one snack. You should also have plenty of water. Things you won't need. Fat loss pills, what a waste of your time taking these. You'd most likely get a drug overdose before losing any weight. There's no proof it works, and even if it did, everyone would be skinny. Plus you'd be being cheap, you didn't take a pill to get fat did you? Also you won't need a scale. Usually that'd just drive you crazy or ruin your determination. You may even step on a scale and notice a weight gain. That's ok though, because there's also muscles that make up weight. I'm talking about just fat. You should be able to tell how you are doing just by looking at yourself, the way you feel and how well your clothes fit.So hopefully, these tips help. Of course this only applies if you want to lose weight, doesn't mean you are fat. It's not fool-proof, but it can work.
  7. Whoa, I never knew that. I was honestly thinking it had someting to do with cork boards. Here's some others .png Portable Network Graphics .bmp bitmap .gif something with compuserve .html hyper text markup lang I don't know much.
  8. Firstly, if you don't know what Game Maker is, it's a very cool tool made by Mark Overmars, you can create your own video games and applications. you can download it here https://www.yoyogames.com/ When you download it, I'd suggest you take a look at the sidebar (in advanced mode). The Sidebar has a empty folders for Sprites, Sounds, Backgrounds, Paths, Scripts, data Files, Time Lines, Objects and Rooms. I will not go over Scripts and Timelines, which are advacned features. First of all, GameMaker can create any type of game, including 3D First Person Shooters, but before you start, you need to know what you are making. Too many games fail because of people not planning their games. What makes a good game, and what things should you consider? Graphics? A Nice Story? What type of game would it be? What music would you use? Is this idea cliche'd, and has it been done before? Think, can I make this game? Don't bother making a game, if you know you can't. Don't kid yourself, you'll only waste your time. I know from experience. While there is a sprite editor in GM, I'd suggest you use another program. What am I getting at? I'd suggest you gather all your resources before putting them in the game. Gather all your sprites and all your music. You'll need music, SFX, Backgrounds, and sprites. If you don't want to rip sprites, you can always make 'em with the gm sprite editor http://forums.xisto.com/no_longer_exists/ magnifying glass= makes things look bigger The puzzle peice thing= switches the first colors to the second colors pencil=default drawing tool pen=paintbrush baster=color replacer paintcan= fill line=line tool square= square tool circle=circle tool and the Text button That's your tools to create one subimage. When you are done, you can use the image, transform, and animation to alter your image/ Sounds: Sounds are pretty straight foward. You import sounds and music. Pay attenton to the picture beside each music. USUALLY, Wavs can't play with wavs, and midis can't play with midis at the same time, e.t.c. Backgrounds: Just import a background Objects: Objects are what your whole game is made from. Objects, objects, objects. When you create an object, you can assign a sprite to it. That's what sprites are for. Sprites and Objects co-exist with eachother. However you can make a game without sprites, that's advanced. Here's the objects window. I hope that explains. I'll explain codes later. paths: This kinda fallss into objects. You assign a route for an object to move with. There's an object action for these too. Data Files: Extra information or files, like DLLs rooms: Rooms, place objects in these, you can also code the rooms. Codes: Codes are like actions, except slightly more advanced. There's a whole dictionary of codes, some where. I"m not explaning all codes. BUt if you want to know, Pm me, or download examples Here's an example of a code if not(place_free(x,y+1)) then { gravity = 0; }else { gravity = 0.4; }gravity_direction = 270;if (hspeed > 0) then{ hspeed -= 0.1; }if (hspeed < 0) then{ hspeed += 0.1; } It's just a jump code. Before using codes, I'd suggest you take a look at the actions, Drag And Drop, or OOP as I showed above. Ok, and the menus: Start menu File: everything here is pretty much self explanitory, except for two things you might wanna know Create Executable- instead of a .gmd file, it changes your file into .exe so everyone can play. Merge Game- Merge two or more .gmd's together Prefrences- Work space options, like coding colors and stuff Edit/Add/Scripts: This is if you are too lazy to use the folders to create your game Run: Test play your game Windoow: who cares Help: This shows legal information, contents, forums, legal info, and registration (that's right, Game Maker isn't free, of course you can always get a cut down version) I guess, that's it, GameMaker in a Nutshell. Anythinh I should explain. I typed this up right here in this add reply page, so there might be some spelling errors
  9. Wow, now that's very impressive. Would you happend to know any tutorials of Adobe Photoshop Elements? I know there's google, but I mean just ones you reccomend?Anyone could keep adding on to this.
  10. Well, as you may or may not know. I'm not very good at sprites. So I decided to get Graphics Gale, and take a few tutorials. I made a few sprites. Tell me what you think of them; That's a gingerbread man, I did the shading all by myself, I didn't use gradients or anything. Also there's this robot/mech that I made. What do you think of this one? http://forums.xisto.com/no_longer_exists/ It's not as good as the gingerbread man, in my opinon. This here's some marble with eyes and a mouth. I was just being random when I made this, it's yellow too. And lastly, I made a rock. Once again, I did the shading myself. I didn't use a gradient tool. Oh, and here's just some computer art I did: http://forums.xisto.com/no_longer_exists/ click it. C&C is appreciated, since I'm new with spriting.
  11. I wouldn't use DIV. I use tables for my site. I tried using DIVs, and it only messed up my site, things wouldn't display right. It's up to you though, it depends more on the site, and the Css you are using, if any. I'd use Div/layers for things inside my body, not for the body/layout itself. Maybe I worded that wrong...
  12. Hey, I was wondering; for my website, i'm using <Marquee></marquee> Tags for like headlines, and things like that. I did notice it only goes from right to left. Is there away to reverse that? Meaning it goes from left to right? Is it a seperate tag? What about up and down? Any help would be greatly appreciated.
  13. Awesome, thanks. Yeah I do think it's got a different 'style'. I will admit that it's not the best quality, but to be frank I couldn't care less how it looked. If this was hygene, i'd be one sad man.... If you are starting a comic, try KeenSpace or Drunk-Duck, they are pretty good, and good luck... Any other comments? -END TRANSMISSION-
  14. http://forums.xisto.com/no_longer_exists/ check it out, to see previous pages, click the arrow. Tell me what you think, and read the comments. if you are a member of DD, why don'tcha vote?
  15. I think it will be eithereverything gets too advanced that you'd rather go outside and playoreverything gets too advanced and they can't advance anymore so it's like the big crash with Atari's games. THere will be so many of the same game, that it will crash the market. So then we have to start over with 32 bit games.
  16. http://chronic.atspace.com/ That's my site that just opened. It's basically a gamemaker site, and a pivot site (it ahs some other stuff thrown in). Check it out, and please leave a comment. I try to update it as much as possible, I post my games there, also some works in progress. Soon I'll add some Vb6 editables. Tell me what you think. Maybe leave a comment or if you feel generous, vote at the gmgtopsites (ths smiley). Don't worry, my Xisto site is coming. I'm just dealing with some browser compatibility issues.
  17. None, I hate every and all rpgs, unless it's Xmen-legends (or something mostly action based, and even then very few).
  18. So you're not much of a nintendo person?? Or sony? So you're into xbox?Yeah, I think Nintendo should have gone with the deal in the beginning.
  19. It is an unusuall and abominale behaivor. It's just morally and legally wrong. (Cannibalism is actually wrong and against the law, because you have assaulted and/or killed the person you were gonna eat. If cannibalism was fine and dandy, it wouldn't be on the news. This is just for america.. I don't know about other countries)
  20. yeah the windows are switching dimentions. one from 600x480 to 800x600 And yeah i'll maker it slow. Oh are you still at the tutorial? Or somewhere else? Well you could always press insert to skip levels.tHanks for your feedback
  21. Cannibalism also means for one to kill and consume of it's own kind. Doesn't mean it has to be human/
  22. I've got a question. I find eating people VERY disturbing, I want to know: Why do people do that? Like a little while ago, I heard on the news, that some guy I ate this one girl or something. What do you think makes someone want to eat people? It just creeps me out, that of all the food in the whole world, you have to eat your neighbor. What do you think about cannibalism? (I'm talking about today's world) here's somethin' I found on cannibal http://news.bbc.co.uk/2/hi/europe/3254074.stm and this http://www.rotten.com/library/death/cannibalism/
  23. I highly reccomend Game maker. You can do pretty much anything now. Even things that like aren't available, you can extend it using DLLs. GM is so cool, and i'm working on a few games my self, if you need help, just ask.Also my site is partly dedicated to gm.;
  24. Well you can't get anything worth downloading free these days.Anyways, even though it's a 30 day trial, there's Graphics-gale.I also like mIcrosoft Gif Animator: That's totally free..see I only mentioned two, probably 2 already mentioned.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.