Search found 209 matches

by nkk_kan
Jun 22, 2014 4:51
Forum: Game Dev
Topic: JASC Soccer
Replies: 78
Views: 43599

Re: JASC Soccer

Anyone still have a copy of this game?
Chrome tells me that the Mediafire download in OP is malicious.
and pittographic.com seems to be down.

cheers,
nkk
by nkk_kan
Dec 18, 2011 5:41
Forum: Archive
Topic: Blackout 1.0
Replies: 5
Views: 2957

I know i'm a bit late but very good job on the game!
Love the music notes too! :P
by nkk_kan
Nov 21, 2011 11:50
Forum: Beginners
Topic: Will freeBASIC do this?
Replies: 8
Views: 2221

Yes it is quite possible to do what you want in Freebasic. Basically, you need to look into socket programming for what you want to achieve You can open a socket to the device for a telnet or ssh session (provided the network device allows you to access it that way). For windows, you'd need to learn...
by nkk_kan
Sep 15, 2011 6:19
Forum: Community Discussion
Topic: The new website
Replies: 150
Views: 32493

I don't think the bar is out of place..It gives kind of professional look and i just think it should be darker grey (like the header)
by nkk_kan
Sep 09, 2011 8:46
Forum: General
Topic: chisock - Local Port
Replies: 6
Views: 1519

Yeah. Need to use bind() the socket to a local port before connect()
That should work. Did you test it?
I will modify and test it when i get back home today.

Sorry for late reply
I've been busy with work

nkk
by nkk_kan
Sep 08, 2011 1:43
Forum: General
Topic: chisock - Local Port
Replies: 6
Views: 1519

Hello Vince, To specify a local port on any socket, you need to use bind() to associate a socket with a specific local port number and IP address. (Usually done on server side). In chisock, This is not done and connect() chooses a local port automatically (usual practice on client side where multipl...
by nkk_kan
Aug 21, 2011 3:57
Forum: Community Discussion
Topic: Is there any fb game which can be played over the internet ?
Replies: 16
Views: 2611

The only one i know is Gods and Idols by Jattenalle!
by nkk_kan
Jul 02, 2011 14:17
Forum: Beginners
Topic: Compiling a library
Replies: 9
Views: 2967

You need to use compiler's -lib commandline option for creating a static library. Then you can use the static library by passing it as -l mylib parameter when writing a program that uses that library. (The .a needs to be in same directory as .bas or you can put the .a in freebasic/lib/_yourOs_/ fold...
by nkk_kan
May 31, 2011 11:50
Forum: Beginners
Topic: Every 5 seconds
Replies: 37
Views: 5409

Here's how i do it. just a bit different from Richard's

Code: Select all

Dim As Double msgtimer = Timer

Do
	If( (Timer - msgtimer) >= 5) Then
		Print "hello!"
		msgtimer = Timer
	End If
	
	Sleep 10
	
Loop Until InKey = Chr(27)
by nkk_kan
May 03, 2011 10:38
Forum: Community Discussion
Topic: How old are you ?
Replies: 155
Views: 32633

Hi I'm 21, and i'm a hobbyist Fb programmer. I will be working as a software engineer soon. I like to code little snippets here and there and games are my favourite area. I started Fb in 2006 i think, back then i had my little p3 ;p Too bad I don't do any of those things for a living. :p You _know_ ...
by nkk_kan
May 03, 2011 10:30
Forum: Projects
Topic: Explode!
Replies: 14
Views: 3905

Hehe Explode sucked tbh, it was flimsy as hell in regards to gameplay and code :P

But glad it helped you out! :)
I'll check out your game when i get home.

You seem to be of social type and i think you would like to hang out with us at ##freebasic on irc.freenode.net? ;p

cheers,
nkk
by nkk_kan
May 02, 2011 13:20
Forum: Beginners
Topic: Super New Guy Here!!
Replies: 35
Views: 5667

Ontopic : Affinity4Code420, QBExpress is a really good resource for anything Basic related (though some codes might be outdated but it is still great) Offtopic : FreeBASIC is pretty much like old Qbasic. Ofcourse, it doesn't have few old commands and with good reasons. (and there are alternatives t...
by nkk_kan
Apr 23, 2011 13:25
Forum: Archive
Topic: Mini Football game
Replies: 7
Views: 2246

Nice try
The gameplay reminds me of Sensible Soccer :)
(maybe you could make something like that?)
by nkk_kan
Mar 30, 2011 6:08
Forum: Game Dev
Topic: Please help with radar plotting
Replies: 14
Views: 5608

I see that you are using Polar coordinates ( radius and angle ) so here your radius is 60m and angle is 30 degrees.. Convert that to Cartesian Coordinates and plot them relative to your starting point. The two polar coordinates r and θ can be converted to the Cartesian coordinates x and y by using t...
by nkk_kan
Dec 24, 2009 17:03
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74361

Yeah, the simplest way is to fill all the areas which you want to be transparent with Magic pink (rgb(255,0,255)) and save it without transparency. This has worked for me for ages.