Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bug Reports
I tried compiling using .09b, a program that uses sterling's graphical library. I ended up with this error:

Code:
gfxmain.bi(87): error 4: Duplicated definition On Line: 87

This is what line 87 is on qbgfxmain.bi:

declare function screen stdcall alias "fb_GfxScreen" (ScreenNum as integer) as integer

Oddly, this does not happen with any other version of fb... yet my program will crash inexplicibly no matter what i do. This is what i have so far in my program.

Code:
declare sub loadmap2 (filename$)

'$dynamic
' $include: "qbgfx4fb.bi"


screen 13

'----------------

'----------------**Tiles & sprites**-----------------------
redim shared npcsprite(1,1) as integer 'holds the npc sprites.
redim shared tiles(1) as integer 'holds the tiles.
redim shared objectsprites(1,1) as integer 'holds the object sprites.
redim shared npcfiles(1) as string 'holds the names of all the npc filenames.
DIM SHARED tileset(4) AS STRING 'holds the tile filenames: up to four tilesets.

'----------------**Map Layers**----------------------------
redim shared maplayer(1,1) as integer 'this holds the base layer.
redim shared mapoverlayer(1,1) as integer 'holds the roof/high wall layer.
redim shared mapobjectlayer(1,1) as integer 'holds map object layer.
redim shared mapcollayer(1,1) as integer 'this holds the map collision layer.
redim shared mapname as string 'holds the map filename.

'-----------------**Palette stuff**---------------------------
redim shared pal(1) as integer 'this holds the palette.
redim shared palname as string 'this holds the palette name.
dim shared palput as string 'this also holds the palette name... change later.

'------------------**Map Variables**---------------------------
redim shared mapx, mapy as single 'map height, width.
redim shared screen_height, screen_width as integer 'max screen height and width
TYPE maptype Field=1
    wid AS INTEGER 'width of map
    height AS INTEGER 'height of map
    pwid AS INTEGER 'width of map in pixels
    pheight AS INTEGER 'height of map in pixels
    pal AS STRING * 1 'palette name of map
    tileset AS STRING * 1 'tilesets names of map
    script AS STRING * 1 'name of map script
    mapname AS STRING * 1 'name of map itself.
END TYPE
DIM SHARED layerset(3) AS INTEGER
DIM SHARED numsets(4) AS INTEGER
dim shared map as maptype

loadmap2 "map3.map"

SUB loadmap2 (filename$)

FOR y = 1 TO 4
numsets(y) = 0
NEXT

REDIM tiletile(1) AS INTEGER
REDIM tiletileindex(1) AS INTEGER
REDIM tiletile2(1) AS INTEGER
REDIM tiletile3(1) AS INTEGER
REDIM tiletile2index(1) AS INTEGER
REDIM tiletile3index(1) AS INTEGER
REDIM tiletile4(1) AS INTEGER
REDIM tiletile4index(1) AS INTEGER


filenum = FREEFILE

OPEN filename$ FOR BINARY AS #filenum

GET #filenum, , map.wid
GET #filenum, , map.height

GET #filenum, , templength

palput = SPACE$(templength)
GET #filenum, , palput

GET #filenum, , activetilesets

FOR y = 1 TO activetilesets
GET #filenum, , til
GET #filenum, , templength
tileset(til) = SPACE$(templength)
GET #filenum, , tileset(til)
numsets(til) = 1
NEXT


REDIM maplayer(map.wid, map.height) AS INTEGER
REDIM mapoverlayer(map.wid, map.height) AS INTEGER
REDIM mapobjectlayer(map.wid, map.height) AS INTEGER
REDIM mapcollayer(map.wid, map.height) AS INTEGER

GET #filenum, , layerset(1)
GET #filenum, , layerset(2)
GET #filenum, , layerset(3)

FOR y = 0 TO map.height
FOR x = 0 TO map.wid
GET #filenum, , maplayer(x, y)

NEXT x, y

FOR y = 0 TO map.height
FOR x = 0 TO map.wid
GET #filenum, , mapoverlayer(x, y)
NEXT x, y

FOR y = 0 TO map.height
FOR x = 0 TO map.wid
GET #filenum, , mapcollayer(x, y)
NEXT x, y

FOR y = 0 TO map.height
FOR x = 0 TO map.wid
GET #filenum, , mapobjectlayer(x, y)

NEXT x, y

CLOSE #filenum




END SUB

There could most definately be something wrong with the code, considering i copied and pasted it the subroutine from another program, which could mean invalid variables. However, i think i may of weeded them all out...
Jumping Jahoolipers!
Reply


Messages In This Thread
Bug Reports - by marzecTM - 12-02-2004, 08:18 AM
Bug Reports - by VonGodric - 12-02-2004, 10:06 AM
Bug Reports - by v3cz0r - 12-02-2004, 10:41 AM
Bug Reports - by SJ Zero - 12-02-2004, 11:32 AM
Bug Reports - by v3cz0r - 12-02-2004, 12:11 PM
Bug Reports - by Z!re - 12-02-2004, 02:01 PM
Bug Reports - by Z!re - 12-02-2004, 02:13 PM
Bug Reports - by v3cz0r - 12-02-2004, 05:21 PM
Bug Reports - by Z!re - 12-02-2004, 08:32 PM
Bug Reports - by Z!re - 12-02-2004, 08:36 PM
Bug Reports - by v3cz0r - 12-02-2004, 09:05 PM
Bug Reports - by Z!re - 12-02-2004, 09:05 PM
Bug Reports - by v3cz0r - 12-02-2004, 09:09 PM
Bug Reports - by Z!re - 12-02-2004, 09:13 PM
Bug Reports - by Jofers - 12-02-2004, 09:15 PM
Bug Reports - by adosorken - 12-02-2004, 10:48 PM
Bug Reports - by v3cz0r - 12-02-2004, 11:44 PM
Bug Reports - by barok - 12-03-2004, 06:06 AM
Bug Reports - by Jofers - 12-03-2004, 07:31 AM
Bug Reports - by barok - 12-03-2004, 07:39 AM
Bug Reports - by Jofers - 12-03-2004, 07:51 AM
Bug Reports - by ShadowWolf - 12-03-2004, 08:10 AM
Bug Reports - by marzecTM - 12-03-2004, 08:14 AM
Bug Reports - by Z!re - 12-03-2004, 08:20 AM
Bug Reports - by marzecTM - 12-03-2004, 08:22 AM
Bug Reports - by ShadowWolf - 12-03-2004, 08:26 AM
Bug Reports - by Z!re - 12-03-2004, 08:33 AM
Bug Reports - by marzecTM - 12-03-2004, 08:38 AM
Bug Reports - by ShadowWolf - 12-03-2004, 08:41 AM
Bug Reports - by marzecTM - 12-03-2004, 08:45 AM
Bug Reports - by relsoft - 12-03-2004, 08:48 AM
Bug Reports - by ShadowWolf - 12-03-2004, 09:14 AM
Bug Reports - by marzecTM - 12-03-2004, 09:20 AM
Bug Reports - by barok - 12-03-2004, 10:26 AM
Bug Reports - by relsoft - 12-03-2004, 12:50 PM
Bug Reports - by v3cz0r - 12-03-2004, 04:19 PM
Bug Reports - by marzecTM - 12-03-2004, 05:49 PM
Bug Reports - by barok - 12-03-2004, 07:36 PM
Bug Reports - by v3cz0r - 12-03-2004, 08:27 PM
Bug Reports - by Jofers - 12-03-2004, 08:57 PM
Bug Reports - by KiZ - 12-03-2004, 09:10 PM
Bug Reports - by v3cz0r - 12-03-2004, 09:45 PM
Bug Reports - by KiZ - 12-03-2004, 10:07 PM
Bug Reports - by v3cz0r - 12-03-2004, 10:21 PM
Bug Reports - by KiZ - 12-03-2004, 10:40 PM
Bug Reports - by v3cz0r - 12-03-2004, 11:17 PM
Bug Reports - by marzecTM - 12-03-2004, 11:22 PM
Bug Reports - by v3cz0r - 12-03-2004, 11:24 PM
Bug Reports - by na_th_an - 12-06-2004, 12:33 AM
Bug Reports - by Jofers - 12-06-2004, 12:49 AM
Bug Reports - by v3cz0r - 12-06-2004, 01:20 AM
Bug Reports - by Z!re - 12-06-2004, 01:28 AM
Bug Reports - by Jofers - 12-06-2004, 01:47 AM
Bug Reports - by Z!re - 12-06-2004, 01:48 AM
Bug Reports - by Z!re - 12-06-2004, 02:48 AM
Bug Reports - by Jofers - 12-06-2004, 02:51 AM
Bug Reports - by v3cz0r - 12-06-2004, 02:54 AM
Bug Reports - by Z!re - 12-06-2004, 02:54 AM
Bug Reports - by na_th_an - 12-06-2004, 05:28 AM
Bug Reports - by na_th_an - 12-06-2004, 06:00 AM
Bug Reports - by v3cz0r - 12-06-2004, 06:42 AM
Bug Reports - by na_th_an - 12-06-2004, 06:44 AM
Bug Reports - by Sterling Christensen - 12-06-2004, 08:28 AM
Bug Reports - by v3cz0r - 12-06-2004, 08:33 AM
Bug Reports - by na_th_an - 12-06-2004, 09:20 AM
Bug Reports - by adosorken - 12-06-2004, 09:32 AM
Bug Reports - by SJ Zero - 12-06-2004, 09:39 AM
Bug Reports - by na_th_an - 12-06-2004, 09:43 AM
Bug Reports - by adosorken - 12-06-2004, 10:07 AM
Bug Reports - by v3cz0r - 12-06-2004, 10:15 AM
Bug Reports - by Sterling Christensen - 12-06-2004, 12:04 PM
Bug Reports - by Dr_Davenstein - 12-06-2004, 12:13 PM
Bug Reports - by relsoft - 12-06-2004, 12:40 PM
Bug Reports - by adosorken - 12-06-2004, 06:07 PM
Bug Reports - by v3cz0r - 12-06-2004, 07:19 PM
Bug Reports - by adosorken - 12-06-2004, 09:10 PM
Bug Reports - by Blitz - 12-06-2004, 09:22 PM
Bug Reports - by Z!re - 12-06-2004, 10:32 PM
Bug Reports - by Z!re - 12-06-2004, 10:49 PM
Bug Reports - by v3cz0r - 12-06-2004, 11:16 PM
Bug Reports - by adosorken - 12-07-2004, 12:59 AM
Bug Reports - by na_th_an - 12-07-2004, 01:30 AM
Bug Reports - by v3cz0r - 12-07-2004, 03:15 AM
New bug? - by red_Marvin - 12-07-2004, 03:46 AM
Bug Reports - by Z!re - 12-07-2004, 04:01 AM
Bug Reports - by red_Marvin - 12-07-2004, 04:05 AM
Bug Reports - by Blitz - 12-07-2004, 04:22 AM
Bug Reports - by na_th_an - 12-07-2004, 04:51 AM
Bug Reports - by v3cz0r - 12-07-2004, 07:53 AM
Bug Reports - by SJ Zero - 12-07-2004, 11:48 AM
Bug Reports - by na_th_an - 12-07-2004, 09:26 PM
Bug Reports - by Z!re - 12-08-2004, 02:33 AM
Bug Reports - by v3cz0r - 12-08-2004, 02:47 AM
DIM SHARED - by Badjas - 12-08-2004, 04:22 AM
and.. - by Badjas - 12-08-2004, 04:27 AM
Bug Reports - by v3cz0r - 12-08-2004, 05:08 AM
ooops - by Badjas - 12-08-2004, 05:17 AM
hard crash - by Badjas - 12-08-2004, 05:38 AM
Bug Reports - by v3cz0r - 12-08-2004, 06:08 AM
Bug Reports - by adosorken - 12-08-2004, 06:26 AM
Bug Reports - by Jofers - 12-08-2004, 07:25 AM
Bug Reports - by v3cz0r - 12-08-2004, 07:39 AM
Bug Reports - by Jofers - 12-08-2004, 09:10 AM
Bug Reports - by Z!re - 12-08-2004, 09:48 AM
Bug Reports - by adosorken - 12-08-2004, 09:48 AM
Bug Reports - by Jofers - 12-08-2004, 10:13 AM
Bug Reports - by CGI Joe - 12-08-2004, 05:44 PM
Bug Reports - by Z!re - 12-08-2004, 07:01 PM
Bug Reports - by CGI Joe - 12-08-2004, 09:21 PM
Bug Reports - by Z!re - 12-08-2004, 09:54 PM
Bug Reports - by aetherfox - 12-08-2004, 11:04 PM
Bug Reports - by v3cz0r - 12-09-2004, 04:18 AM
Bug Reports - by na_th_an - 12-09-2004, 06:03 AM
Bug Reports - by adosorken - 12-09-2004, 08:59 AM
Bug Reports - by Badjas - 12-11-2004, 04:41 AM
Bug Reports - by Jofers - 12-11-2004, 06:32 AM
Bug Reports - by marzecTM - 12-11-2004, 06:39 AM
Bug Reports - by VonGodric - 12-11-2004, 06:58 AM
Bug Reports - by v3cz0r - 12-11-2004, 09:48 AM
Bug Reports - by Badjas - 12-11-2004, 10:35 PM
Bug Reports - by VonGodric - 12-12-2004, 09:15 AM
Bug Reports - by na_th_an - 12-29-2004, 09:27 PM
Bug Reports - by v3cz0r - 12-30-2004, 08:22 AM
Bug Reports - by na_th_an - 12-31-2004, 08:19 AM
Bug Reports - by Ryan - 12-31-2004, 09:46 AM
Bug Reports - by v3cz0r - 12-31-2004, 12:44 PM
Bug Reports - by Sterling Christensen - 12-31-2004, 01:15 PM
Bug Reports - by VonGodric - 12-31-2004, 07:42 PM
Bug Reports - by adosorken - 12-31-2004, 07:51 PM
Bug Reports - by VonGodric - 12-31-2004, 07:55 PM
Bug Reports - by adosorken - 12-31-2004, 07:58 PM
Bug Reports - by na_th_an - 12-31-2004, 08:03 PM
Bug Reports - by v3cz0r - 12-31-2004, 09:06 PM
Bug Reports - by Jotz - 01-01-2005, 05:17 AM
Bug Reports - by VonGodric - 01-01-2005, 06:09 AM
Bug Reports - by Jotz - 01-01-2005, 09:23 AM
Bug Reports - by v3cz0r - 01-01-2005, 09:30 AM
Bug Reports - by VonGodric - 01-01-2005, 08:20 PM
Bug Reports - by v3cz0r - 01-01-2005, 08:45 PM
Bug Reports - by VonGodric - 01-01-2005, 08:54 PM
Bug Reports - by theuserbl - 01-02-2005, 07:48 PM
Bug Reports - by Z!re - 01-02-2005, 11:50 PM
Bug Reports - by VonGodric - 01-03-2005, 12:28 AM
Bug Reports - by lkd85 - 01-03-2005, 02:06 AM
Bug Reports - by v3cz0r - 01-03-2005, 04:26 AM
Bug Reports - by lkd85 - 01-03-2005, 10:21 AM
Bug Reports - by barok - 01-03-2005, 11:47 AM
Bug Reports - by Sterling Christensen - 01-03-2005, 12:47 PM
Bug Reports - by barok - 01-03-2005, 09:06 PM
Bug Reports - by DrV - 01-04-2005, 05:17 AM
Bug Reports - by barok - 01-04-2005, 06:20 AM
Bug Reports - by retsyo - 01-04-2005, 07:14 PM
Bug Reports - by adosorken - 01-04-2005, 07:26 PM
Bug Reports - by zydon - 01-04-2005, 07:34 PM
thx - by theuserbl - 01-04-2005, 08:12 PM
Bug Reports - by retsyo - 01-04-2005, 08:24 PM
Bug Reports - by theuserbl - 01-04-2005, 09:15 PM
Bug Reports - by VonGodric - 01-04-2005, 10:44 PM
Bug Reports - by adosorken - 01-05-2005, 12:04 AM
Bug Reports - by Sterling Christensen - 01-05-2005, 01:50 AM
Bug Reports - by Sterling Christensen - 01-05-2005, 01:52 AM
Bug Reports - by VonGodric - 01-05-2005, 02:30 AM
Bug Reports - by v3cz0r - 01-05-2005, 05:22 AM
Bug Reports - by zydon - 01-05-2005, 06:15 AM
Bug Reports - by DrV - 01-05-2005, 06:17 AM
Bug Reports - by Z!re - 01-05-2005, 09:59 AM
Bug Reports - by v3cz0r - 01-05-2005, 10:18 AM
Bug Reports - by retsyo - 01-05-2005, 10:22 AM
Bug Reports - by Z!re - 01-05-2005, 10:42 AM
Bug Reports - by Z!re - 01-05-2005, 11:18 AM
Bug Reports - by steven_basic - 01-05-2005, 07:30 PM
Bug Reports - by v3cz0r - 01-05-2005, 07:31 PM
Bug Reports - by Jofers - 01-05-2005, 07:59 PM
Bug Reports - by steven_basic - 01-06-2005, 01:45 AM
"UUID.LIB" warning? - by steven_basic - 01-06-2005, 01:54 AM
Bug Reports - by subxero - 01-06-2005, 03:30 AM
Re: "UUID.LIB" warning? - by Z!re - 01-06-2005, 04:47 AM
Bug Reports - by v3cz0r - 01-06-2005, 04:48 AM
possible command$ bug - by Antoni Gual - 01-06-2005, 05:23 AM
Bug Reports - by v3cz0r - 01-06-2005, 07:07 AM
Bug Reports - by Antoni Gual - 01-06-2005, 07:37 AM
Bug Reports - by adosorken - 01-06-2005, 07:51 AM
Bug Reports - by undertow - 01-06-2005, 09:14 PM
Bug Reports - by adosorken - 01-06-2005, 09:26 PM
Bug Reports - by v3cz0r - 01-06-2005, 10:17 PM
Bug Reports - by 1000101 - 01-07-2005, 03:12 AM
Bug Reports - by v3cz0r - 01-07-2005, 03:39 AM
Bug Reports - by 1000101 - 01-07-2005, 03:55 AM
Bug Reports - by 1000101 - 01-07-2005, 06:00 AM
Bug Reports - by adosorken - 01-07-2005, 07:46 AM
Bug Reports - by Dr_Davenstein - 01-07-2005, 01:32 PM
Bug Reports - by 1000101 - 01-07-2005, 10:22 PM
Bug Reports - by v3cz0r - 01-08-2005, 09:44 AM
Bug Reports - by retsyo - 01-08-2005, 12:33 PM
Bug Reports - by Z!re - 01-08-2005, 12:43 PM
Bug Reports - by Dr_Davenstein - 01-08-2005, 12:44 PM
Bug Reports - by adosorken - 01-08-2005, 05:21 PM
Bug Reports - by na_th_an - 01-08-2005, 08:25 PM
Bug Reports - by retsyo - 01-09-2005, 08:36 AM
Bug Reports - by v3cz0r - 01-09-2005, 09:17 AM
Bug Reports - by 1000101 - 01-09-2005, 09:21 AM
Bug Reports - by v3cz0r - 01-09-2005, 10:16 AM
Bug Reports - by Z!re - 01-09-2005, 10:59 AM
Bug Reports - by relsoft - 01-09-2005, 11:03 AM
Bug Reports - by Z!re - 01-09-2005, 11:06 AM
Bug Reports - by adosorken - 01-09-2005, 11:49 AM
Bug Reports - by Z!re - 01-09-2005, 11:55 AM
Bug Reports - by undertow - 01-09-2005, 07:01 PM
Bug Reports - by v3cz0r - 01-09-2005, 08:03 PM
Bug Reports - by zydon - 01-09-2005, 08:04 PM
Bug Reports - by Sterling Christensen - 01-09-2005, 08:08 PM
Bug Reports - by v3cz0r - 01-09-2005, 08:16 PM
Bug Reports - by subxero - 01-09-2005, 08:25 PM
Bug Reports - by v3cz0r - 01-09-2005, 08:32 PM
Bug Reports - by Sterling Christensen - 01-09-2005, 08:48 PM
Bug Reports - by v3cz0r - 01-09-2005, 09:19 PM
Bug Reports - by zydon - 01-09-2005, 09:39 PM
Bug Reports - by v3cz0r - 01-09-2005, 09:58 PM
Bug Reports - by na_th_an - 01-09-2005, 11:19 PM
Bug Reports - by relsoft - 01-10-2005, 11:35 AM
Bug Reports - by zydon - 01-10-2005, 12:27 PM
Bug Reports - by subxero - 01-10-2005, 05:27 PM
Bug Reports - by Jofers - 01-10-2005, 07:16 PM
Bug Reports - by v3cz0r - 01-10-2005, 08:23 PM
Bug Reports - by Sterling Christensen - 01-10-2005, 10:25 PM
Bug Reports - by 1000101 - 01-10-2005, 10:33 PM
Bug Reports - by Jofers - 01-11-2005, 05:35 AM
Bug Reports - by ShadowWolf - 01-11-2005, 07:16 AM
Bug Reports - by v3cz0r - 01-11-2005, 07:44 AM
Bug Reports - by ShadowWolf - 01-11-2005, 07:56 AM
Bug Reports - by adosorken - 01-11-2005, 11:07 AM
Bug Reports - by SJ Zero - 01-11-2005, 02:49 PM
Bug Reports - by Blitz - 01-11-2005, 05:22 PM
Bug Reports - by SJ Zero - 01-11-2005, 09:01 PM
Bug Reports - by v3cz0r - 01-11-2005, 09:44 PM
Bug Reports - by fsw - 01-11-2005, 10:10 PM
Bug Reports - by v3cz0r - 01-11-2005, 10:32 PM
Bug Reports - by zydon - 01-11-2005, 10:37 PM
Bug Reports - by v3cz0r - 01-11-2005, 10:44 PM
Bug Reports - by zydon - 01-11-2005, 10:55 PM
Bug Reports - by Jofers - 01-11-2005, 11:04 PM
Bug Reports - by adosorken - 01-11-2005, 11:26 PM
Bug Reports - by v3cz0r - 01-11-2005, 11:34 PM
Bug Reports - by fsw - 01-12-2005, 12:46 AM
Bug Reports - by Jofers - 01-12-2005, 01:31 AM
Bug Reports - by Z!re - 01-12-2005, 01:51 AM
Bug Reports - by fsw - 01-12-2005, 02:15 AM
Bug Reports - by Badjas - 01-12-2005, 02:18 AM
Bug Reports - by Jofers - 01-12-2005, 04:06 AM
Bug Reports - by retsyo - 01-12-2005, 08:18 AM
Bug Reports - by adosorken - 01-12-2005, 10:31 AM
Bug Reports - by retsyo - 01-12-2005, 12:06 PM
Bug Reports - by Sterling Christensen - 01-13-2005, 06:27 PM
Bug Reports - by v3cz0r - 01-13-2005, 08:03 PM
Bug Reports - by adosorken - 01-14-2005, 12:42 AM
Bug Reports - by Sterling Christensen - 01-14-2005, 03:51 AM
Bug Reports - by adosorken - 01-14-2005, 04:30 AM
Bug Reports - by relsoft - 01-14-2005, 10:15 AM
Bug Reports - by Z!re - 01-16-2005, 09:50 PM
Bug Reports - by na_th_an - 01-16-2005, 10:06 PM
Bug Reports - by aetherfox - 01-16-2005, 10:44 PM
Bug Reports - by Z!re - 01-17-2005, 06:44 AM
Bug Reports - by v3cz0r - 01-17-2005, 09:29 AM
Bug Reports - by relsoft - 01-17-2005, 12:44 PM
Bug Reports - by Z!re - 01-17-2005, 02:55 PM
Bug Reports - by v3cz0r - 01-17-2005, 07:26 PM
Bug Reports - by relsoft - 01-18-2005, 12:55 PM
Bug Reports - by na_th_an - 01-18-2005, 02:03 PM
Bug Reports - by v3cz0r - 01-18-2005, 08:00 PM
Bug Reports - by Jotz - 01-25-2005, 08:49 AM
Bug Reports - by Dr_Davenstein - 01-25-2005, 09:29 AM
Bug Reports - by relsoft - 01-25-2005, 11:24 AM
Bug Reports - by Dr_Davenstein - 01-25-2005, 11:46 AM
Bug Reports - by lillo - 01-25-2005, 01:57 PM
Bug Reports - by v3cz0r - 01-25-2005, 08:00 PM
Bug Reports - by Zap - 01-26-2005, 09:08 PM
Bug Reports - by subxero - 01-27-2005, 08:36 AM
Bug Reports - by Zap - 01-27-2005, 10:22 PM
Bug Reports - by Z!re - 01-28-2005, 01:26 AM
Bug Reports - by v3cz0r - 01-28-2005, 01:29 AM
Bug Reports - by Aquarius - 01-28-2005, 02:31 AM
Bug Reports - by nathan - 01-29-2005, 03:02 PM
Bug Reports - by relsoft - 01-29-2005, 03:12 PM
Bug Reports - by whitetiger0990 - 01-29-2005, 08:21 PM
Bug Reports - by Dr_Davenstein - 01-30-2005, 09:45 AM
Bug Reports - by v3cz0r - 01-30-2005, 11:51 AM
Bug Reports - by ShadowWolf - 01-30-2005, 12:06 PM
Bug Reports - by Dr_Davenstein - 01-30-2005, 12:43 PM
Bug Reports - by na_th_an - 02-03-2005, 12:41 AM
Bug Reports - by v3cz0r - 02-03-2005, 01:05 AM
Bug Reports - by na_th_an - 02-03-2005, 01:18 AM
Bug Reports - by Z!re - 02-03-2005, 01:58 AM
Bug Reports - by v3cz0r - 02-03-2005, 02:09 AM
Bug Reports - by na_th_an - 02-03-2005, 02:12 AM
Bug Reports - by theuserbl - 02-03-2005, 05:30 PM
Bug Reports - by lillo - 02-03-2005, 05:54 PM

Forum Jump:


Users browsing this thread: 4 Guest(s)