[QUOTE=Namelezz!;17763015]Even I love it. Just gonna implement proper enemy damage and some little scripting stuff here and there (including a hilarious fall if you attempt to climb a Yamarian tower as a warrior) and it'll be in a good state. There's much to be done though. Swordfighting and attack moves must be implemented fully - I haven't even got any good mage sprites yet!
Don't worry, this'll take time but it'll be done![/QUOTE]
Cool, you know how to script Python in Construct?
[QUOTE=ddrl46;17762547]You're a Normal Member now :D (server date is sunday).[/QUOTE]
Yay :buddy:
But I dunno what to post about :frown:
[QUOTE=Marlamin;17762735]Bam, progress.
[img]http://www.marlamin.nl/sig/index.php?raw_name=Marlamin&raw_realm=Steamwheedle+Cartel®ion=eu[/img]
[img]http://www.marlamin.nl/sig/index.php?raw_name=Boubouille&raw_realm=Elune®ion=eu[/img]
[img]http://www.marlamin.nl/sig/index.php?raw_name=Chaud&raw_realm=Gurubashi®ion=www[/img]
[img]http://www.marlamin.nl/sig/index.php?raw_name=Anzodara&raw_realm=Steamwheedle+Cartel®ion=eu[/img]
(The last character doesn't have a armory entry. It's inactive.)[/QUOTE]
Got my caching up and running also, 6 hour updates... Shame my artwork is shit at the moment, same with the general design...
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=eu&r=Steamwheedle+Cartel&n=Marlamin[/img]
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=eu&r=Elune&n=Boubouille[/img]
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=www&r=Gurubashi&n=Chaud[/img]
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=eu&r=Steamwheedle+Cartel&n=Anzodara[/img]
[img]http://cubeupload.com/files/347e00aspwelcometoyamar.png[/img]
Welcome to Yamar. The towers of the rich have now been done by my very good comrade Zee!
[QUOTE=Druchii;17763421]Got my caching up and running also, 6 hour updates... Shame my artwork is shit at the moment, same with the general design...
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=eu&r=Steamwheedle+Cartel&n=Marlamin[/img]
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=eu&r=Elune&n=Boubouille[/img]
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=www&r=Gurubashi&n=Chaud[/img]
[img]http://scottsserver.gotdns.com/secret/wow/image.php?s=eu&r=Steamwheedle+Cartel&n=Anzodara[/img][/QUOTE]
Those are pretty nice as well! :D
EDIT: Woops, forgot to add a 6 hour expiration to the cache! :v:
Actually, the armory doesn't update -that much-. A 24 hour expiration is fine.
[QUOTE=ddrl46;17762547]You're a Normal Member now :D (server date is sunday).[/QUOTE]
Playing with DOM.
[img]http://img.loldepot.com/5985ca09bdd7e8e8badf.png[/img]
I liked yours because you had the JavaScript option.
[QUOTE=Marlamin;17763469]Those are pretty nice as well! :D
EDIT: Woops, forgot to add a 6 hour expiration to the cache! :v:
Actually, the armory doesn't update -that much-. A 24 hour expiration is fine.[/QUOTE]
Oh lord :P
I figure 6 hours is fine, in case someone updates say, 5 hours before it changes?
That would save them 19 hours of false data :)
[QUOTE=Druchii;17763604]Oh lord :P
I figure 6 hours is fine, in case someone updates say, 5 hours before it changes?
That would save them 19 hours of false data :)[/QUOTE]
True. :v:
Hmm, I wonder what the easiest way to do this is.. I was going with simple checking if a the cache date is not today, but that won't work if I want it to flush faster than 24 hours.
[QUOTE=Namelezz!;17763465][img]http://cubeupload.com/files/347e00aspwelcometoyamar.png[/img]
Welcome to Yamar. The towers of the rich have now been done by my very good comrade Zee![/QUOTE]
:3
[QUOTE=pdkm931;17763325]Yay :buddy:
But I dunno what to post about :frown:[/QUOTE]
And the forum is fucked up :saddowns: My thread wont reveal it's content :frown:
[QUOTE=Diaklu;17763546]Playing with DOM.
[img]http://img.loldepot.com/5985ca09bdd7e8e8badf.png[/img]
I liked yours because you had the JavaScript option.[/QUOTE]
:D, nice work.
[editline]10:24PM[/editline]
[QUOTE=pdkm931;17763665]And the forum is fucked up :saddowns: My thread wont reveal it's content :frown:[/QUOTE]
Wait a few minutes, cleaning the database :D.
Screwing around with SFML, does anyone know how to get the mouse coordinates?
phpMyAdmin doesn't love me anymore, it fails at loading the language file D:.
[QUOTE=Denzo;17763754]Screwing around with SFML, does anyone know how to get the mouse coordinates?[/QUOTE]
[cpp]
App.GetInput().GetMouseX()
App.GetInput().GetMouseY()
[/cpp]
Just another version of the steam badge generator:
[img]http://andersonmatt.com/sb/index.php?id=andersonmat[/img]
I made a PHP script which starts an application :smug:
[php]
<?php
passthru("\"C:\ConsoleApplication1.exe\" " . escapeshellcmd($_GET['args']));
die();
?>
[/php]
which makes a vb application go
[code]
Module Module1
Sub Main(ByVal args As String())
Console.WriteLine("sup<br>")
Console.WriteLine("Arguments are as follows:<br>")
For Each arg As String In args
Console.WriteLine(arg + "<br>")
Next arg
Console.WriteLine("end")
End Sub
End Module
[/code]
and returns
[code]
sup
Arguments are as follows:
lol
end
[/code]
when called by [url]http://localhost/app_launch.php?args=lol[/url]
[QUOTE=cas97;17764148]I made a PHP script which starts an application :smug:
when called by [url]http://localhost/app_launch.php?args=lol[/url][/QUOTE]
localhost doesn't work for us mate. :P
[QUOTE=Sippeangelo;17764043][cpp]
App.GetInput().GetMouseX()
App.GetInput().GetMouseY()
[/cpp][/QUOTE]
Thanks, but the coords don't work when trying to use them as coords for sf::Sprite::move
And you need to escape the string.
[editline]Edit:[/editline]
Mother fucker broke my automerge. D:
[QUOTE=Marlamin;17758128]Haha, or this font doesn't have russian characters or my encoding is going wrong. :v:
[img]http://www.marlamin.nl/sig/index.php?raw_name=%D0%9A%D0%B8%D0%BB%D0%BB%D1%88%D0%BE%D1%82&raw_realm=%D0%A1%D0%B5%D0%B4%D0%BE%D0%B3%D1%80%D0%B8%D0%B2®ion=eu[/img][/QUOTE]
apparently gd has problems with opentype fonts (i'm assuming you're using the pirated version of DIN Pro you found on google)
[editline]07:20PM[/editline]
[QUOTE=andersonmat;17764065]Just another version of the steam badge generator:
[img]http://andersonmatt.com/sb/index.php?id=andersonmat[/img][/QUOTE]
what the hell why do i see everyone using a hex background ever since i posted my srcsrv gd example?
[QUOTE=gngbng;17764715]
what the hell why do i see everyone using a hex background ever since i posted my srcsrv gd example?[/QUOTE]
Because I love stealing your ideas. ;)
I had diagonal stripes but I felt like using a hex background. I can change it to a pentagon if you'd like? :P
[QUOTE=gngbng;17764715]apparently gd has problems with opentype fonts (i'm assuming you're using the pirated version of DIN Pro you found on google)
[/QUOTE]
hahaha
[QUOTE=a2h;17754528][url]http://anztf2mug.net/a2h/bugspray/[/url]
Updated to 0.0.3.
And pretty close to being ready for placing on GitHub.
Registering should work.
As with before I'm still using an external MySQL host.
*inhales*[/QUOTE]
Aah! ltkerr0r! Thank you and damn you at the same time :ssj:
[QUOTE=Gimmmik;17760214]How did you get the transparency in this? Like around the search box and the background table? Curios because I wanted to do something like this too.[/QUOTE]
If you have a complete and utter hatred of Internet Explorer:
[code]background:rgba(0,0,0,0.5);[/code]
For black on 50% transparency.
Otherwise you'll need to do it in an image editor that supports opacity.
[img]http://filesmelt.com/downloader/WhatAmIWorkingOn.jpg[/img]
Excuse the logo, there was nothing else in my pictures folder that could serve as a good background image. Got the bullet direction thing working, now I just have to program firing bullets.
[QUOTE=gngbng;17764715]apparently gd has problems with opentype fonts (i'm assuming you're using the pirated version of DIN Pro you found on google)[/QUOTE]
:v: , I'll try some TrueType fonts instead, checked my encoding and it was fine so it has to be the font/GD. Thanks for the help.
[QUOTE=andersonmat;17764820]Because I love stealing your ideas. ;)
I had diagonal stripes but I felt like using a hex background. I can change it to a pentagon if you'd like? :P[/QUOTE]
nah it's fine ;]
[editline]08:50PM[/editline]
[QUOTE=raccoon12;17764941]hahaha[/QUOTE]
i don't know [url=http://www.fonts.com/findfonts/detail.htm?pid=427906]what you're "hahaha"-ing about[/url].
Fixed the HTML code injection in [url=http://anztf2mug.net/a2h/bugspray/]bugspray[/url]... covered adding comments and issues and registration form.
A quick RSS example for my experience.
[img]http://img.loldepot.com/816a50ed9a243404fee8.png[/img]
Gets the feed directly from Facepunch.
[QUOTE=gngbng;17765866]i don't know [url=http://www.fonts.com/findfonts/detail.htm?pid=427906]what you're "hahaha"-ing about[/url].[/QUOTE]
That is an expensive font
Who the fuck buys font that's $374, let alone buys any kind of font, no matter what the price?
Sorry, you need to Log In to post a reply to this thread.