Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 666 results for
shooter
- Page 1
Making a simple sliding shooter.
Programming
Software Development
18 Years Ago
by Jokkocze
…, and now as a project, im making a simple sliding
shooter
. (You know, a ship that you control up or down…
Re: Making a simple sliding shooter.
Programming
Software Development
18 Years Ago
by Danny.VBT
…, and now as a project, im making a simple sliding
shooter
. (You know, a ship that you control up or down…
Possible Keylogger/Screen Shooter/Trojan
Hardware and Software
Information Security
16 Years Ago
by dan_x1000
… have problems: c:/windows/system32/shell32.dll = Keylogger and Screen
Shooter
c:/windows/explorer.exe = Cliplogger c:/windows/system32/ieframe.dll…
Help with shooter.
Programming
Software Development
16 Years Ago
by chris99
…(): pygame.init() screen = pygame.display.set_mode((screen_mode)) pygame.display.set_caption('
Shooter
') background = pygame.Surface(screen.get_size()) background = background.convert() background.fill…
Re: Help with shooter.
Programming
Software Development
16 Years Ago
by chris99
…(): pygame.init() screen = pygame.display.set_mode((screen_mode)) pygame.display.set_caption('
Shooter
') background = pygame.Surface(screen.get_size()) background = background.convert() background.fill…
Help with shooter game
Programming
Software Development
13 Years Ago
by Akusa
… game for our final project. The game is a simple
shooter
type game with ascii chars and stuff for the player…
alien shooter game in fedora 14????
Programming
Software Development
11 Years Ago
by shadowchinna
alien
shooter
doesn't open in wine in fedora???????? How to I play it in fedora 14???
HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Vikram Sehgal
Hello, I am making a 2d
shooter
game, and I dont knnow how to make the player's ship move left and right with left and right arrow keys... please help me. I have to finish this project before 6th... please help
Looking for Bubble Shooter source code.
Programming
Software Development
10 Years Ago
by potpot_25
i am new in game development... pls help me find a resources...i'm looking for bubble
shooter
source code but i can't find one. I'm planning to use Vb.net as my language.. please help me fing a resources..thank you for any reply.
Re: Looking for Bubble Shooter source code.
Programming
Software Development
10 Years Ago
by adivyanadar
You can check this link hope it is usefull https://github.com/senc01a/bubble-
shooter
-unity3d
New Employee Training. USA. "Active Shooter Training Module."
Community Center
6 Years Ago
by rproffitt
… down of the course. > If there is an active
shooter
in the area, we suggest you first run (away), hide…
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by Clinton Portis
what you are trying to do is suprisingly not that difficult. this type of ascii game will involve some simple techniques. in any animated ascii game, it's just a matter of clearing and re-drawing the screen. you will need simple collision detection to tell when you've hit the enemy. you've mentioned that you need random movement for your enemy,…
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by Clinton Portis
New and improved version: [CODE] #include <iostream> #include <windows.h> using namespace std; enum{up, right, down, left}; int direction = 0; int x = 20, y = 10; srand(time(NULL)); char stickman[3][4]; //clear the arrays for(int i=0; i<3; i++) for(int j=0; j<4; j++) stickman[i][j] = ' ';…
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by Clinton Portis
Full working program: [CODE] #include <iostream> #include <ctime> #include <windows.h> using namespace std; void gotoxy(int, int); void set_console_size(); int main() { enum{up, right, down, left}; char stickman[3][4]; int direction = 0; int x = 40, y = 20; srand(time(NULL)); …
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by Nick Evan
However you still use [icode]system("cls");[/icode] :icon_smile:
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by Clinton Portis
system("cls") is cheap and easy. just like my women.
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by mikrosfoititis
By the way it is moving diagonially because you set the move in accordance to [icode]i[/icode]. Each time the variable is increased in the for loop, your "character" is moving both at x and y directions.
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by WaltP
[QUOTE=Clinton Portis;]system("cls") is cheap and easy. just like my women.[/QUOTE] Easy, yes. Cheap, no. The 'work' needed to call the operating system, find and execute the [I]pause[/I] command, then exit the O/S and return to the program is more like a $1000 call girl. It works well, but is far from cheap.
Re: Help with shooter game
Programming
Software Development
13 Years Ago
by Schol-R-LEA
[url=http://support.microsoft.com/kb/99261]Microsoft Support KB article 99261[/url] gives two methods of clearing the Windows console in C++: using [ICODE]system("cls");[/ICODE] and using a function which, while complicated, should be more or less drop-in: the most difficult part of it is the need to get the console handle, which can be …
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Labdabeta
What have you got so far? What libraries are you using for I/O (Win32API/SDL/SFML/etc)? Typically you will use your I/O library to poll for events, then detect the arrow key events and use them to modify a variable that holds the ship's position. How this is done varies by library, so we will need to know more about what you have already tried in…
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Vikram Sehgal
Well i havent made the game screen yet, i came here because i have no idea how to do it, i searched and searched but could not find anything. i am using codeblocks btw.
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Vikram Sehgal
its graphicless *if ur going to ask why am i doing it when i dont know? answer:- OUR computer teacher does not teach us anything, she keeps on giving projects and tells us to find the solution ourselves.
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by L7Sqr
Well, you cannot expect that you are going to learn something by osmosis - you have to experiment and try for yourself. That does not excuse an incompetent teacher, of course. Otherwise, you still have not mentioned a system. Linux? Windows? Are you provided any existing code (or libraries)? Suggestions of what would be best to use?
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Vikram Sehgal
i use windows 7, i have been searching but unable to find anything! if i do find it shows errors. no code or libs have been provided
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Vikram Sehgal
alright so i found this but this is showing me many errors. code:- #include <iostream> #include <windows.h> #include <conio.h> #include <stdlib.h> #include <stdio.h> using namespace std; int main() { bool game_running(true); char key; do{…
Re: HELP WITH SHOOTER GAME
Programming
Software Development
11 Years Ago
by Vikram Sehgal
ATLAST I SOLVED THE PROBLEM. But i need help in one small thing now. In the code below what i want is that, we are able to press enter when the arrow is next to any of those options, and when we press a new screen is shows.. please help do { ch = getch(); switch(ch) { case 'W…
Re: New Employee Training. USA. "Active Shooter Training Module."
Community Center
6 Years Ago
by Reverend Jim
I'm not at all shocked. I watch the news and I use my brain. I see what's been going on down south these past decades. I'm so glad my son moved from Long Island to the UK. They aren't completely batshit crazy there yet (Brexit notwithstanding).
Re: New Employee Training. USA. "Active Shooter Training Module."
Community Center
6 Years Ago
by alan.davies
No shooting irons in uk, but batshit bonkers all the same. If brexiteers could vote for Trump they would. Unfortunately a lot of them think they can. They think the FBI is a British agency. Cockwombles.
Re: New Employee Training. USA. "Active Shooter Training Module."
Community Center
6 Years Ago
by Reverend Jim
Yeah. In the UK (to my limited knowledge) you sensibly confine your violence to soccer (sorry, footbal) matches unlike the US where it occurs everywhere *except* soccer games (but only because soccer is unpopular there). Of course, the US allows you to pack heat, often openly, everywhere but in the houses of Congress and Senate where open carry …
Re: New Employee Training. USA. "Active Shooter Training Module."
Community Center
6 Years Ago
by pty
Violence at football matches isn't really a thing now. Yes, it happens but incidents are isolated and infrequent. I'd say the most violent times are Friday and Saturday nights in certain town centres where people drink far too much on a very regular basis. Often the fights don't happen until the clubs are emptying and people are queueing for …
1
2
3
12
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC