ProSec commented on Image: Me  -  Dec 18, 2011
lol
blue187 commented on Image: Me  -  Dec 18, 2011
WOW That´s a nice snippet lol
Spoof commented on Image: Windows Theme  -  Dec 17, 2011
Maybe naming this Windows OS Theme would have been a better name and not misleading.
I assumed it was to add a background pic or color into a window... aah, guess not.
But its still cool looking.
Jethro commented on Image: Windows Theme  -  Dec 14, 2011
I can do that too...and I'm running on AMD Athlon 64 Dual Core Processor 5600+ 2.80 GHz, along with 8.00 GB of RAM. I reckon I just want my PC to perform the best of the best. lol
xdesoto commented on Image: Windows Theme  -  Dec 14, 2011
My computer is good enough to be able to have both. :)
Jethro commented on Image: Windows Theme  -  Dec 13, 2011
I've disabled Windows visual effects in favor of performance.
xdesoto commented on Image: Windows Theme  -  Dec 13, 2011
Thank you :) Yeah I'm running 7
gekkegast commented on Image: Windows Theme  -  Dec 13, 2011
Your taskbar look awesome.
blackvenomm666 commented on Image: Windows Theme  -  Dec 13, 2011
he's running either vista or 7
FelicianoX commented on Image: Windows Theme  -  Dec 13, 2011
How do you make them ?
IllogicTC commented on Image: Zombies Picwin Game  -  Dec 13, 2011
*Fixed the colours on the mob drops. Easier to read now.
*Fixed a bug where sometimes a bullet hitting one zombie would take out not only that zombie but sometimes a random other zombie.
Frenetic commented on Image: Windows Theme  -  Dec 13, 2011
Of course you can change literally everything on windows, lol.
blackvenomm666 commented on Image: Windows Theme  -  Dec 13, 2011
didnt know you could change the look of the start menu button like that
Frenetic commented on Image: Windows Theme  -  Dec 13, 2011
Blackvenomm666, it's the theme which changed it to that.
blackvenomm666 commented on Image: Windows Theme  -  Dec 13, 2011
what windows are you running that has a + in for the start menu button
IllogicTC commented on Image: Zombies Picwin Game  -  Dec 13, 2011
Another Update on progress:

I have mob drops up and running now. Tinkering with the colours to provide the easiest presentation (my initial box at $rgb(133,133,133) and arial 8 $rgb(255,0,0) is kinda hard to see).

So far I have the health and the machinegun drop. Drops will automatically disappear after a short time (standard feature on games of this type, hope you understand ;D).

Machinegun is up and running. Looking into the rocket launcher and shotgun since those are more than just simple "one bullet traveling in one direction until it hits something".
JoKabua commented on Image: Naruto Script  -  Dec 13, 2011
Thank you ircchain.. thats the problem i'm still learning stuff.. I would happy if u guys teach me..
ProSec commented on Image: Windows Theme  -  Dec 13, 2011
fark, i gotta get WindowBlinds back...
xdesoto commented on Image: Windows Theme  -  Dec 13, 2011
*slaps :p
Jethro commented on Image: Windows Theme  -  Dec 13, 2011
Oh lord, it's pitch black. lol :P I'd hate my life if it was dark and gray. No offense, though, this is unique to your liking indeed.
IllogicTC commented on Image: Zombies Picwin Game  -  Dec 12, 2011
Also, I'm looking for weapon and pickup ideas. I already have some picked out:

Pistol (already included): Single shot of course, fires once every 40 frames.
Shotgun (planned): Multi-shot (I'm thinking 5), will fire once every 30 frames. This is going to be tricky for me, I may have to do $sin and $cos after all, but I'm betting I could figure out something else with the framework of bullet movement that I already have.
Machine gun (planned): Single shot, fires once every 5-10 frames. I haven't exactly set a rate for it yet, since there are performance issues with a lot of bullets on-screen.
Rocket Launcher (planned) Single shot, fires once every 40 frames. Will travel slightly slower than bullets, but will have an AOE upon contact with an enemy of as-of-yet undecided radius. Then again, this is if $inellipse will let me :\
Health (planned): Obvious.
IllogicTC commented on Image: Zombies Picwin Game  -  Dec 12, 2011
The reason I haven't used those functions is because I hate them :( and I can't figure out completely how I would do it, anyway. I can drawline with them in a given angle, sure. But I have no clue how to make a zombie use $cos and $sin and figure out which is the best way to move, given that they only move one pixel per turn (forgot to mention. zombies have "turns" so they move at a set slower rate than the player, though their turns speed up as the player accrues kills).

Having zombies that "meander" toward you seems like a good idea. :D I may look into that.

Also, I changed it to > 2.5, and it gives a decent homing that works like so:

Imagine a line drawn at 22.5 degrees as compared to due north, from the player to the edge of the map. Then another line 45 degrees further, then another, until I have a "pizza" of eight slices. When the zombies are within the confines of one of these slices, they will move the appropriate direction for that zone. Using my current homing math and increasing the check to > 2.5 not only does this, but when they land on one of the dividing lines between two zones, they follow the line (performing one down movement, then a down-left, repeat, for example). But again.... sounds like meandering may be one method of making this more interesting.

As for wandering until they become aggressive.... all zombies always spawn at the edge of the screen. SReject suggested this, but with my current concept it would present to the player that the center is the safest place to be, yet in order to kill the zombies without them coming too close with the eight-direction firing you will have to get out of your comfort zone at least to an extent.... and probably moreso if the center area has too many zombies piling up into it. Also, for some reason $inellipse() was mega glitching for me (returning $true as long as the zombie's X coordinate was (Player's_X_COORDINATE +/- 1) no matter how far away the zombie was. So I had to resort to using $inrect to loosely define the "player" to them.... so I could imagine how proximity homing would go for me. I'm using 7.19 but had seen nothing reported in bugfixes about $inellipse.
jaytea commented on Image: Zombies Picwin Game  -  Dec 12, 2011

Quote


Code

 



=

Code

 


that would cause the zombies to move straight towards the player, which could get quite difficult when there's a lot of them. on the other hand, it's also quite predictable.

Illogic, yours is very similar and uses "> 2" where SReject's would use ">= 1", which probably results in a slightly more playable environment.

the behaviour of the zombies could be the most interesting aspect of the game, from a coder's perspective. it's a lot of fun to think of certain movement patterns and try to figure out how to express them mathematically. or to tweak / generate algorithms and observe their effects on the zombies. how about zombies that wobble towards you, taking 'steps' in a random direction between +/-45° relative to the player? or zombies that wander around until you come close, then move towards you with greater accuracy as they get closer to you? have fun with this, and don't restrict yourself by avoiding $sin / $cos. if you need to use trigonometry then you need to use trigonometry! :P
IllogicTC commented on Image: Zombies Picwin Game  -  Dec 11, 2011
@SReject: From the movement alias:

Code

 


Where %zomb.px = Player's X Coordinate, %zomb.py = Player's Y Coordinate, $3 = Zombie's X Coordinate, $4 = Zombie's Y coordinate.

Also, an update on the progress:
Hit Detection (kinda) Completed. However, right now it involves a filter embedded in a filter, so it's not the most efficient. I am looking deeper into it now.
Game Over Screen Completed: When your health reaches zero, it provides the obvious "You're Dead!" screen along with how many kills you made. It pops up an $input() to ask if you would like to play again.
SReject commented on Image: Zombies Picwin Game  -  Dec 11, 2011
No sin/cos, just pythogrean(sp?):

Code

 
irchainscriptz commented on Image: Naruto Script  -  Dec 07, 2011
Nice Theme JoKabua just add a few more custom dialogs and addons and your all set
irchainscriptz commented on Image: Untitled  -  Dec 07, 2011
LOL thanks
ProSec commented on Image: Untitled  -  Dec 07, 2011
Beautiful.
SnoooP commented on Image: Naruto Script  -  Dec 06, 2011
Awesome spot Napa, I better be more careful lmao
xdesoto commented on Image: Naruto Script  -  Dec 05, 2011
im okay working a lot
  1. Prev
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. Next
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.