• What are you working on? V10
    2,002 replies, posted
[QUOTE=Parakon;22381151]-image- Decided to go with the charm variable affecting flirting, if you can defeat the girl's heart in a very pokemon-esqe battle you can date her etc[/QUOTE] Thats awesome, but are you trying to date the grocery store girl? :V
yep, aim high
I thought Garry already had a girlfriend...:smug:
Well I just made a program that makes programs like this one [code] Module Module1 Sub Main() Dim gfqyav As Integer = 0 Dim ttjfkd As Integer = 0 Dim fhxkvp As Integer = 0 For jtto = 0 To 5 System.Console.WriteLine(ttjfkd.ToString()) System.Console.WriteLine() System.Console.WriteLine() System.Console.WriteLine(gfqyav.ToString()) System.Console.WriteLine() Next System.Console.WriteLine(gfqyav.ToString()) Dim kuufkj As String = "" End Sub End Module [/code] and this one [code] Module Module1 Sub Main() For xjfy = 0 To 1 System.Console.WriteLine() System.Console.WriteLine() System.Console.WriteLine() System.Console.WriteLine() System.Console.WriteLine() System.Console.WriteLine() Next For ptjj = 0 To 6 System.Console.WriteLine() Next System.Console.WriteLine() Dim bpgdhk As String = "" Dim pxbtwo As Integer = 0 Dim wiqkld As String = "" If bpgdhk = bpgdhk Then System.Console.WriteLine(wiqkld) wiqkld = System.Console.ReadLine() End If End Sub End Module [/code] The only not random thing about them is that they are not in the least bit useful Good news is the programs are nearly un-crashable
[QUOTE=Parakon;22381151]Decided to go with the charm variable affecting flirting, if you can defeat the girl's heart in a very pokemon-esqe battle you can date her etc[/QUOTE] wish it worked that way in real life, I'd have all the bitches
[QUOTE=raccoon12;22382579]wish it worked that way in real life, I'd have all the bitches[/QUOTE] nerde
[cpp] InputUpdate(); // Custom mouse state char buffer [50]; char buffer2 [50]; float x = cursorPos.x; test = sprintf_s(buffer,"X %f", x); float y = cursorPos.y; test1 = sprintf_s(buffer2, "X %f", y); //start rendering if (d3ddev->BeginScene()) { d3ddev->Clear(0, 0, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, 0x000000, 1.0f, 0); spriteobj->Begin(D3DXSPRITE_ALPHABLEND); FontPrint(fontArial24, 10, 10, test, D3DCOLOR_XRGB(255, 0, 0)); FontPrint(fontArial24, 80, 10, test1.c_str(), D3DCOLOR_XRGB(255, 0, 0)); spriteobj->End(); //stop rendering d3ddev->EndScene(); d3ddev->Present(NULL, NULL, NULL, NULL); } [/cpp] Honestly pissing me off. Outputs a stupid Ankh or the female sign. I think its coming from trying to put a float value into a string or something.
[QUOTE=efeX;22382700]nerde[/QUOTE] jk i have tons of bitches right now want one?
[QUOTE=raccoon12;22383765]jk i have tons of bitches right now want one?[/QUOTE] Yes please.
[QUOTE=darkrei9n;22382768][cpp] InputUpdate(); // Custom mouse state char buffer [50]; char buffer2 [50]; float x = cursorPos.x; test = sprintf_s(buffer,"X %f", x); float y = cursorPos.y; test1 = sprintf_s(buffer2, "X %f", y); //start rendering if (d3ddev->BeginScene()) { d3ddev->Clear(0, 0, D3DCLEAR_TARGET | D3DCLEAR_ZBUFFER, 0x000000, 1.0f, 0); spriteobj->Begin(D3DXSPRITE_ALPHABLEND); FontPrint(fontArial24, 10, 10, test, D3DCOLOR_XRGB(255, 0, 0)); FontPrint(fontArial24, 80, 10, test1.c_str(), D3DCOLOR_XRGB(255, 0, 0)); spriteobj->End(); //stop rendering d3ddev->EndScene(); d3ddev->Present(NULL, NULL, NULL, NULL); } [/cpp] Honestly pissing me off. Outputs a stupid Ankh or the female sign. I think its coming from trying to put a float value into a string or something.[/QUOTE] You can use stringstream... [cpp]#include <sstream> ... std::stringstream Whatever; Whatever << x; std::string strOut; Whatever >> strOut; //I think so anyway, haven't used it in a while... ... [/cpp] Anyway, it'll let you place the value into a string, might be the problem. [editline]LOL[/editline] Made up a quick templated function, will probably error when it finds something it can't convert [cpp]template< typename T > std::string TtoStr( const T& tInput ) { std::stringstream strStream; strStream << tInput; std::string strOut; strStream >> strOut; return strOut; }[/cpp] [editline]LOLTWO[/editline] Oh, and a reversal! Always handy to have one. [cpp]template< typename T > T StrToT( const std::string& strInput ) { T tResult = NULL; std::stringstream strsNum; strsNum << strInput; strsNum >> tResult; return tResult; }[/cpp] However, it leaks. Trying to fix now... [editline]LOLTHREE[/editline] Fixed! Just replaced it above
I'll try that. If I could kiss you, I would.
[QUOTE=darkrei9n;22384105]I'll try that. If I could kiss you, I would.[/QUOTE] I'll kiss 'im for you ;)
Now to make a menu thingy.
[QUOTE=Parakon;22381151][img]http://i48.tinypic.com/2r4r1us.png[/img] Decided to go with the charm variable affecting flirting, if you can defeat the girl's heart in a very pokemon-esqe battle you can date her etc[/QUOTE] When are you releasing this? It looks like a lot of fun. I just want to have some fun for once in a while. Sorry yall, i'm in a really sad mood right now...
[QUOTE=iPope;22366845]Does anyone else here find it awesome to code in really small fonts? [img]http://anyhub.net/file/screenie.png[/img] Doesn't that just look sexy?[/QUOTE] Python..?
[QUOTE=Joshyy;22386312]Python..?[/QUOTE] iPope and myself are the resident pythonistas.
[QUOTE=Chandler;22386880]iPope and myself are the resident pythonistas.[/QUOTE] Thought so, i'd be one, but I completely forgot the language :v:
I tried switching to C# but python wouldn't let go. It just kept biting me until I started using it again. The font is HobTiny which you can get here : [URL]http://www.dr-hoiby.com/res/HobTiny.php[/URL]
[QUOTE=Chandler;22386880]iPope and myself are the resident pythonistas.[/QUOTE] *LOUD COUGHING NOISE* I advocate python at every opportunity, even if I'm not using it right at the moment!
[QUOTE=TheBoff;22388145]*LOUD COUGHING NOISE* I advocate python at every opportunity, even if I'm not using it right at the moment![/QUOTE] [code]from grabbag import ricola[/code] Should get rid of that cough :v: I wasn't aware of your pythonista status. Sorry!
I'm just curious, when programs are polling files, are they listening to some modified-file pipe or do they just while true check files?
re-learning JS after not having touched it in years by way of fucking with the google chrome experiments [IMG]http://i175.photobucket.com/albums/w148/mblunk/Private/Untitled-10.png[/IMG] 250 "smoke" particles that follow your mouse [url]http://tezzanator.net/mblunk/smoke/smoke.htm[/url] [editline]09:21AM[/editline] (how could i soften it up some more without just spamming more particles?)
[QUOTE=mblunk;22390920](how could i soften it up some more without just spamming more particles?)[/QUOTE] Try blurring the cloud. That's what it would look like with Gaussian blur applied: [IMG]http://i47.tinypic.com/2qxlt7t.png[/IMG]
To make a sort of menu button I should just draw a bitmap there and than check to see if the mouse is within the bounds of the bitmap right? Or is there a better way to do that?
[QUOTE=i300;22385578]When are you releasing this? It looks like a lot of fun. I just want to have some fun for once in a while. Sorry yall, i'm in a really sad mood right now...[/QUOTE] shouldn't be too long now, it was suppose to be ready this weekend, but then I decided to add dating battles, because a job simulator with some drugs isn't all that challenging or fun. If I had to guess i'd say this wednesday.
Been using Visual Studio for too long, whenever I type anything on a computer I only type the first few letters and expect it to fill out the rest :downs:
Haha, been there done that. :v:
Put everyone from WAYWO thread into one house like some kind of reality show and see what would happen. Day 52, Chad says something stupid again.
[QUOTE=layla;22394310]Put everyone from WAYWO thread into one house like some kind of reality show and see what would happen. Day 52, Chad says something stupid again.[/QUOTE] day 54, chad wonders why hairs are growing in places they shouldnt be
Day 56. Layla found dead with rock in mouth and note saying "Dang 9 year olds". Day 56. Chad turns 22. [editline]04:47PM[/editline] /end of dumb assery
Sorry, you need to Log In to post a reply to this thread.