FAQ  •  Register  •  Login

GameJolt

<<

watusimoto

Site Admin

Posts: 1558

Joined: Tue Feb 23, 2010 7:07 pm

Location: Quartz's mom's house

Post Tue Jan 07, 2014 6:12 pm

GameJolt

After waaaay too much work, I've got a Bitfighter page up at GameJolt.

http://gamejolt.com/games/arcade/bitfighter/20546/

Check it out, generate some traffic, and be sure to give it a good rating.

Thanks!!
<<

Little_Apple

User avatar

Posts: 839

Joined: Sat Jun 11, 2011 12:31 pm

Location: Zanzibar Land

Post Tue Jan 07, 2014 8:32 pm

Re: GameJolt

Rated!

MisterOwlman wrote:The installer has no file type, and as a result I could not run it...

Help this guy out?
Hee-ho!
<<

Skybax

User avatar

Posts: 1035

Joined: Thu Mar 11, 2010 9:17 am

Location: Washington

Post Tue Jan 07, 2014 9:47 pm

Re: GameJolt

The Quick Play doesn't work either. It tries to load and then just says the game closed.
raptor wrote:Sorry Skybax, I hijacked your signature so I could post lots of info.
Whittling While wrote:Does this mean I finally get quoted in someone's signature?
watusimoto wrote:Who are the devs around here?!?
<<

amgine

Posts: 1399

Joined: Thu Apr 19, 2012 2:57 pm

Post Tue Jan 07, 2014 10:35 pm

Re: GameJolt

yeah it needs to be fixed.

I bet if you put BF on kongergate it would instantly get 1,000,000+ users........

cant rate yet must wait will edit this post once it is rated.
Bitfighter Forever.
<<

Quartz

User avatar

Posts: 901

Joined: Thu Jun 17, 2010 12:14 am

Location: Texas

Post Wed Jan 08, 2014 3:35 am

Re: GameJolt

Nice work wat :D
Exploits of Quartz and bobdaduck - Pleiades Maps
19-year-old Quartz mad about lawn removal
raptor wrote:sometimes I think getting Quartz to use plugins is like getting my mom to use a computer
<<

Santiago ZAP

User avatar

Posts: 317

Joined: Sat May 14, 2011 8:05 am

Post Wed Jan 08, 2014 9:58 pm

Re: GameJolt

Epic job :D
Hope this gets us some people :P
:zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance: :zapdance:
<<

sky_lark

User avatar

Posts: 2053

Joined: Wed Mar 10, 2010 6:00 pm

Post Thu Jan 09, 2014 9:35 am

Re: GameJolt

Looks good! By the way, folks: When writing reviews a good rule of thumb is to highlight some strong aspects of the game instead of just embellishing it as the "best game ever" (or something to that effect). We definitely don't want to come across as artificially boosting the ratings, and specialized reviews can appeal to niche gamers. :D
Follow Bitfighter! FacebookTwitterDiscord
<<

Skybax

User avatar

Posts: 1035

Joined: Thu Mar 11, 2010 9:17 am

Location: Washington

Post Thu Jan 09, 2014 10:59 am

Re: GameJolt

I feel like you were staring at Fordcars there..
raptor wrote:Sorry Skybax, I hijacked your signature so I could post lots of info.
Whittling While wrote:Does this mean I finally get quoted in someone's signature?
watusimoto wrote:Who are the devs around here?!?
<<

Fordcars

User avatar

Posts: 1016

Joined: Fri Apr 20, 2012 3:51 pm

Location: Some city, somewhere

Post Thu Jan 09, 2014 3:22 pm

Re: GameJolt

Skybax wrote:I feel like you were staring at Fordcars there..


Wha... LOOK OVER THERE! A QUARTER!
skybax: Why is this health pack following me?
bobdaduck: uh, it likes you.
<<

sky_lark

User avatar

Posts: 2053

Joined: Wed Mar 10, 2010 6:00 pm

Post Thu Jan 09, 2014 4:46 pm

Re: GameJolt

Haha, fordy's comment was fine, it just reminded me of what I wanted to say. One comment endlessly praising the game is not a problem at all. Just, we went through a similar ordeal with the Desura game reviews, and I was always slightly worried someone might brush off the game because it looked "too good to be true."
Follow Bitfighter! FacebookTwitterDiscord
<<

Fordcars

User avatar

Posts: 1016

Joined: Fri Apr 20, 2012 3:51 pm

Location: Some city, somewhere

Post Thu Jan 09, 2014 5:50 pm

Re: GameJolt

Hehe :P I updated my comment anyway
skybax: Why is this health pack following me?
bobdaduck: uh, it likes you.
<<

Skybax

User avatar

Posts: 1035

Joined: Thu Mar 11, 2010 9:17 am

Location: Washington

Post Thu Jan 09, 2014 7:15 pm

Re: GameJolt

Would it be possible to make the Bitfighter Achievements available as GameJolt trophies?
raptor wrote:Sorry Skybax, I hijacked your signature so I could post lots of info.
Whittling While wrote:Does this mean I finally get quoted in someone's signature?
watusimoto wrote:Who are the devs around here?!?
<<

watusimoto

Site Admin

Posts: 1558

Joined: Tue Feb 23, 2010 7:07 pm

Location: Quartz's mom's house

Post Fri Jan 10, 2014 2:54 am

Re: GameJolt

Probably it would -- they have an api that you can access via http calls. It might be possible to periodically scan the database and send achievement info to gamejolt.

http://gamejolt.com/api/doc/game/trophies/

I haven't studied the details, but it might turn out to be pretty easy.
<<

watusimoto

Site Admin

Posts: 1558

Joined: Tue Feb 23, 2010 7:07 pm

Location: Quartz's mom's house

Post Fri Jan 10, 2014 3:33 am

Re: GameJolt

Here, for example, is a little script that allows you to get the account info for me. It is a very quick hack in Perl, (and won't work, since I changed the secret key), but it shows how easy it is:


  Code:
#!/usr/bin/perl

use Digest::MD5 qw(md5_hex);

my $secret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";

my $url ="http://gamejolt.com/api/game/v1/users?game_id=20546&username=watusimoto"

my $sig = md5_hex($url, $secret);

$url .= "\&signature=$sig";

print $url,"\n";
print `curl -s \"$url\"`;


Running the above returns all my GameJolt user info.

Adding an achievement for a player is not much more complex. If we could synchronize the achievement ids between Bitfighter and GameJolt, it would be pretty easy to make this work.
<<

watusimoto

Site Admin

Posts: 1558

Joined: Tue Feb 23, 2010 7:07 pm

Location: Quartz's mom's house

Post Fri Jan 10, 2014 3:39 am

Re: GameJolt

To add an achievement to a user, replace the $url above with:

http://gamejolt.com/api/game/v1/trophies/add-achieved?game_id=20546&username=watusimoto&user_token=xxxxx&trophy_id=yyyyy


where xxxxx is my secret token (similar to a password), and yyyyy is the id of the achievement being awarded.

The only complexity is that we'd need to somehow collect a user's token; maybe there would be an easy way to hack that into phpbb or something. And you'd need the same username between GameJolt and Bitfighter.
<<

Skybax

User avatar

Posts: 1035

Joined: Thu Mar 11, 2010 9:17 am

Location: Washington

Post Fri Jan 10, 2014 12:41 pm

Re: GameJolt

My GameJolt username is the same as my Bitfighter username :D

Maybe you could have the GameJolt Token be something in the .ini that players could fill out?
Else maybe something in the options menu..
raptor wrote:Sorry Skybax, I hijacked your signature so I could post lots of info.
Whittling While wrote:Does this mean I finally get quoted in someone's signature?
watusimoto wrote:Who are the devs around here?!?

Return to General Discussion

Who is online

Users browsing this forum: No registered users and 17 guests

cron