[QUOTE=efeX;17092207]If you can do it in opengl then you can do it in sfml you bunch of faggots
I can't believe how shit everyone in this forum is.[/QUOTE]
thats not the point...
if you do it in opengl then you are doing it in opengl, not sfml...
[editline]07:57AM[/editline]
rated dumb for being efex
thats not my point either prick.
[editline]06:34PM[/editline]
rated dumb for being r4nk
[editline]06:43PM[/editline]
stop rating yourself agree it's sad really
lol
Seems like there's always some people arguing in this section
cause people like r4nk_
[QUOTE=raccoon12;17094816]lol
Seems like there's always some people arguing in this section[/QUOTE]
I think you might mean Facepunch in general.
[quote=efeX]:downswords:[/quote]
You should really just get the fuck out of facepunch.
[QUOTE=demonguard;17097760]You should really just get the fuck out of facepunch.[/QUOTE]
I have to agree.
ok, now that's just rude
bye... ):
[QUOTE=efeX;17098425]ok, now that's just rude
bye... ):[/QUOTE]
You're seriously retarded. Keep the avatar for all I care, sorry I have to learn from tutorials unlike yourself, you pro, you.
learning is different from stealing and calling it your own MULTIPLE TIMES, you thief, you.
[QUOTE=efeX;17098787]learning is different from stealing and calling your own MULTIPLE TIMES, you thief, you.[/QUOTE]
Not really, why recode something when it's been done and is OPENSOURCE. You're bringing up history, get the fuck over it. Everyone else tells you to fuck off and you single me out.
the code in your new avatar must be stolen too
[editline]12:12AM[/editline]
haha you can't even make it transparent, quick go read a tutorial!
[QUOTE=Blynx6;17098796]Not really, why recode something when it's been done and is OPENSOURCE. You're bringing up history, get the fuck over it. Everyone else tells you to fuck off and you single me out.[/QUOTE]
its not opensource so that you can zip it up and put it on a forum claiming it as your own work. Without any credit. Multiple times.
[QUOTE=efeX;17098799]the code in your new avatar must be stolen too
[editline]12:12AM[/editline]
haha you can't even make it transparent, quick go read a tutorial![/QUOTE]
I didn't plan to make it transparent.
[editline]05:13PM[/editline]
[QUOTE=r4nk_;17098810]its not opensource so that you can zip it up and put it on a forum claiming it as your own work. Without any credit. Multiple times.[/QUOTE]
When you're actually coding the framework for the engine, and using sections of the code then yes, it is fine to call.
[QUOTE=Blynx6;17098811]I didn't plan to make it transparent.
[editline]05:13PM[/editline]
When you're actually coding the framework for the engine, and using sections of the code then yes, it is fine to call.[/QUOTE]
The way I remember it, you had serveral threads where the content was ONLY from a tutorial.
Even if you are coding the 'framework for the engine' and using code, decent people have the courtesy to credit original source.
[QUOTE=r4nk_;17098844]The way I remember it, you had serveral threads where the content was ONLY from a tutorial.
Even if you are coding the 'framework for the engine' and using code, decent people have the courtesy to credit original source.[/QUOTE]
Meh, past is the past, I was stupid back then. And it was only two threads :v:
dont bring up history , fuck
[QUOTE=efeX;17098854]dont bring up history , fuck[/QUOTE]
This. Let it die. Mmk?
Stop trying to get the last word and start psoting some awesome shit
[QUOTE=ryandaniels;17085564]My objects have motion blur somehow. I can't print screen it, because it isn't rendered motion blur, but I replicated the effect with paint.net
[IMG]http://i429.photobucket.com/albums/qq12/the1trueryandaniels/motion_blur_prob.png[/IMG]
I tried slowing down the framerate, but unless I lower it down to like 10 frames a sec, I get this motion blur that causes all darkly colored objects to appear almost invisible...
They aren't even moving that fast either, just lazily drifting by.[/QUOTE]
That's called ghosting, it happens when your LCD has a low reaction time.
It's not happening on my monitor. I'm kinda surprised actually. I have a cheap monitor from a shitty brand from a store that mainly sells groceries and clothes.
[QUOTE=Robber;17099594]That's called ghosting, it happens when your LCD has a low reaction time.[/QUOTE]
I didn't know that..That could also be why I couldn't see his "motion blur" on my monitor. Rated informative.
I just dug up some old code I created for a COD4 clan so we can play random private games, Its really old and really crap, I've commented what I thought when I read each line. My comments are in //, code comments are #
[code]
### Import
import random //This okay dokay
### Start
### Teams
team1 =('A','B','C','D') //ooh haven't used brackets for lists in ages
team2 =('A','B','C','D')
team1result ='' // Nice clear variables here, always a good sign
team2result =''
team1result += random.choice(team1) // What the fuck was I thinking
team2result += random.choice(team2)
print '-----------------------------------------------------------------'
print ' Teams Playing'
print '-----------------------------------------------------------------'
print 'Team 1:',team1result,'Vs','Team 2:',team2result
print '-----------------------------------------------------------------'
print ' Map And Gametype'
### Map
print '-----------------------------------------------------------------'
// Calculating then printing that segment, confusing.
maps =('Ambush','Backlot','Bloc','Bog','Countdown','Crash','Crossfire','District','Downpour','Overgrown','Pipeline','Shipment','Showdown','Strike','Vacant','WetWork')
mapresult = ''
mapresult += random.choice(maps) // Good and shit code here, everything
print 'Map:',mapresult // is hardcoded
### Game type
game =('Team Deathmatch','Domination','Headquaters','Sabotage','Search And Destroy',)
gameresult =''
gameresult += random.choice(game)
print 'Game:',gameresult
print '-----------------------------------------------------------------'
print ' Rules'
### Rules
print '-----------------------------------------------------------------'
grenadelaunchers =('Y','N')
grenadelaunchersresult =''
grenadelaunchersresult += random.choice(grenadelaunchers)
fragx3 = ('Y','N')
fragx3result =''
fragx3result += random.choice(fragx3)
hardcore =('Y','N')
hardcoreresult =''
hardcoreresult += random.choice(hardcore)
airsupport =('Y','N')
airsupportresult =''
airsupportresult += random.choice(airsupport) // A big bunch of utter shit
killcam =('Y','N')
killcamresult =''
killcamresult += random.choice(killcam)
c4 = ('Y','N')
c4result =''
c4result += random.choice(c4)
claymore = ('Y','N')
claymoreresult =''
claymoreresult += random.choice(claymore)
friendlyfire = ('Y','N')
friendlyfireresult =''
friendlyfireresult += random.choice(friendlyfire)
print 'Greande Launchers:',grenadelaunchersresult
print 'Frag x3:',fragx3result
print 'Hardcore:',hardcoreresult
print 'Air Support',airsupportresult
print 'Killcam:',killcamresult
print 'C4:',c4result
print 'Claymore:',claymoreresult
print 'Friendly Fire:',friendlyfireresult
print '------------------------------------------------------------------'
// The lines could of been shortened to print '-'*(whatever)
[/code]
Anyway I am working on a new project called Virtu-Planner, for students. I'll release more details when I have details to release. At the moment its sort of all running around in my head.
Working on a little Flash chess game, you can try it [url=http://aturpin.mangerinc.com/blog/2009/09/03/flash-chess-game/]over at my blog[/url] since I somehow can't embed it here.
Made from scratch
[img]http://imgkk.com/i/41dy_l.png[/img]
Nowhere near done, about 50% with HTML and layout. Then I'll take the PHP from version one and rewrite a lot of it and intergrate it into this.
Looks pretty good.
Live demo: [url]http://compwhizii.net/EventStats/new/index.html[/url]