Search found 10 matches

by gas01ine
Sun Oct 28, 2007 1:50 pm
Forum: Coding Questions
Topic: n00b question: #Sprite Object not initialized
Replies: 21
Views: 4850

nco2k wrote:you just forgot:

Code: Select all

UsePNGImageDecoder()
just lol! figuring out that myself would have taken me another 8 hours of banging my head against the keyboard first (if InitKeyboard() <> 0) ;).

and thanks heaps for the now neatly organized code! i just luv the PB-community!
by gas01ine
Sun Oct 28, 2007 5:07 am
Forum: Coding Questions
Topic: n00b question: #Sprite Object not initialized
Replies: 21
Views: 4850

n00b question: #Sprite Object not initialized

Hi folks. It's been quite a while since my last PB project and I seem to have troubles with the basics. I am messing around with my little program (see below) and just can't get past the "#Sprite Object not initialized" Error. Any ideas?

Enumeration
#windowMain
#sprite_PlayerIdle01
EndEnumeration ...
by gas01ine
Sun Feb 26, 2006 9:25 am
Forum: Coding Questions
Topic: Reading HTTP-Chat stream for ChatBot
Replies: 6
Views: 1663

yes, it helps thanks. i coded a big deal during the night and am also able to read from the server.

on closer inspection i found out that the upstream is a GET command. i am also able now to read the correct SID and ID for each login session directly from the server.

but i am still having troubles ...
by gas01ine
Sat Feb 25, 2006 10:37 pm
Forum: Coding Questions
Topic: Reading HTTP-Chat stream for ChatBot
Replies: 6
Views: 1663

Thank you for the fast response. In the last hours I made myself very familiar with the HTTP protocol and tried something to pass a line to the chat-server while being logged in via FireFox. But it doesn't work - i get no response in the chat in firefox. But if i use the very same statement (http ...
by gas01ine
Sat Feb 25, 2006 7:36 pm
Forum: Coding Questions
Topic: Reading HTTP-Chat stream for ChatBot
Replies: 6
Views: 1663

thanks! i just hope i understood what you suggested :roll:

has anybody done this before and provide me maybe some source code?
in the meantime i see what i can figure out myself.

to get the stream I am thinkin about an HTTP GET request or something (URL or POST) am I right?
by gas01ine
Sat Feb 25, 2006 2:27 am
Forum: Coding Questions
Topic: Reading HTTP-Chat stream for ChatBot
Replies: 6
Views: 1663

Reading HTTP-Chat stream for ChatBot

hi! is there any possibility to read a stream from a browserbased chat (e.g. www.chat.at)? i am kinda new with pb but want to give it a try - but i have no idea how to start...

my chatterbot needs company ;)

thanks in advance!
by gas01ine
Tue Aug 05, 2003 5:41 pm
Forum: Game Programming
Topic: PureBasic Game Tutorials???
Replies: 52
Views: 22671

I really like the tutorials on hypervox' site :) downloaded all of 'em :D

I am doing a platformer right now and got stuck so maybe someone here can help me:
It's this darn gavity-thing! It's harder than i thought, I ended up with an in-depht physics book yesterday... lol
But how would you code that ...
by gas01ine
Sat Aug 02, 2003 8:51 pm
Forum: Coding Questions
Topic: MIDAS11.DLL not found
Replies: 3
Views: 2715

WHOA! Thanx a LOT! Haven't thought of THAT!
by gas01ine
Sat Aug 02, 2003 5:28 pm
Forum: Coding Questions
Topic: MIDAS11.DLL not found
Replies: 3
Views: 2715

MIDAS11.DLL not found

Unfortunately i cant use MODs in my games. They dont work cause Windows terminates the program like this Modtest.exe - MIDAS11.DLL not found
I tried copying PB's Midas-Libs in my game directory, in my music directory even in the WINDOWS/SYSTEM32 direcotry: MIDAS11.DLL seems to be no windows library ...
by gas01ine
Sat Aug 02, 2003 5:22 pm
Forum: Game Programming
Topic: Simple Jump 'n' Run
Replies: 3
Views: 3287

Simple Jump 'n' Run

I just started out with PB and encountered some problems making a simple Jump 'n' Run. Maybe some of you could help me....

Just imagine an good ol' Super Mario JnR

1. Collision
Is there a way to check the collision only on the top of each sprite? I mean if an enemy sprite hits you from the left or ...