GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Projects that have specifically been abandoned or considered "dead" get moved here, so people will quit bumping them. If your project has wound up here and it should not be, contact a moderator to have it moved back to the land of the living.
Locked
User avatar
NachtIntellect
Posts: 312
Joined: Wed Feb 29, 2012 2:10 pm
Location: Bienenstock, Germany

Re: GZDoomBuilHey soder-Bugfix, a maintenance fork of GZDB

Post by NachtIntellect »

Has anyone reported any issues with creating any map so long as the map name is E5M1 and receiving errors upon testing it in GZDoomBuilder? It seems to work fine if I drag it into GZDoom and I do not think it's anything to do with the current version of GZDoom or GZDoombuilder the error I am getting is "Could not find map E1Mc" almost as if it's trying to pull me into a map that doesn't exist I would also like to add that I am using the original Doom format, I haven't seen what it does to other formats such as hexen, UDMF etc.
User avatar
Kappes Buur
 
 
Posts: 4179
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Kappes Buur »

Question or possibly a feature request:

Given a map which has groups of different things (for example Imps and Demons and whatever),
is it possible to
  • find and highlight all things of a specific group so I can give them a TagID ?
    and/or
  • find and highlight all things of a specific group with a specific TagID so I can change the TagID ?
instead of having to select them one at a time.
User avatar
Nash
 
 
Posts: 17494
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Nash »

Two ways.

1) Setup thing filters. Anything not caught by the filter will be unselectable no matter how hard you try. You can also add a specific tag ID to filter for (just go to the "Action" tab and look for "Filter by tag")

Image

2) Select everything, then go to Things -> Filter selection. Choose only the items you want to be left selected; everything else will be deselected
User avatar
Kappes Buur
 
 
Posts: 4179
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Kappes Buur »

Excellent, thank you.
User avatar
Kappes Buur
 
 
Posts: 4179
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Kappes Buur »

A slight oversight concerning the Refmanual:

The page \Refmanual\gzdb\compilingtheeditor.html does not point to the css file

Image
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by ZZYZX »

You are doing it wrong.
Image

File lookup differs between MS help and directly looking at the HTMLs. If I "fix" that, it won't work in help viewer then.
User avatar
Ozymandias81
Posts: 2068
Joined: Thu Jul 04, 2013 8:01 am
Graphics Processor: nVidia with Vulkan support
Location: Mount Olympus, Mars
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Ozymandias81 »

Pedro vc wrote:Am I doing something wrong here? This actor doesn't seem to appear in GZDB. Sorry for the dumb question, I started using Zscript today.

MAPINFO
DoomEdNums
{
23000 = ChaosSphere
}
Zscript
Class ChaosSphere : CustomInventory
{
Default
{
+COUNTITEM
+INVENTORY.ALWAYSPICKUP
+FLOATBOB
+NOGRAVITY
Inventory.MaxAmount 666;
Inventory.PickupMessage "";
}
States
{
Spawn:
CHSS ABCD 4;
loop;
}
}
You need to define under "Default" Category, Title and Color at least (Category or Title would just do the trick)
So that would be:

Code: Select all

Default
	{
		//$Category New Pickups
		//$Title Chaos Sphere
		//$Color 4 //This is up to you

		+COUNTITEM
		+INVENTORY.ALWAYSPICKUP
		+FLOATBOB
		+NOGRAVITY
		Inventory.MaxAmount 666;
		Inventory.PickupMessage "";
	}
User avatar
Pedro vc
Posts: 167
Joined: Fri Oct 10, 2008 4:56 pm

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Pedro vc »

Ozymandias81 wrote:
Pedro vc wrote:Am I doing something wrong here? This actor doesn't seem to appear in GZDB. Sorry for the dumb question, I started using Zscript today.

MAPINFO
DoomEdNums
{
23000 = ChaosSphere
}
Zscript
Class ChaosSphere : CustomInventory
{
Default
{
+COUNTITEM
+INVENTORY.ALWAYSPICKUP
+FLOATBOB
+NOGRAVITY
Inventory.MaxAmount 666;
Inventory.PickupMessage "";
}
States
{
Spawn:
CHSS ABCD 4;
loop;
}
}
You need to define under "Default" Category, Title and Color at least (Category or Title would just do the trick)
So that would be:

Code: Select all

Default
	{
		//$Category New Pickups
		//$Title Chaos Sphere
		//$Color 4 //This is up to you

		+COUNTITEM
		+INVENTORY.ALWAYSPICKUP
		+FLOATBOB
		+NOGRAVITY
		Inventory.MaxAmount 666;
		Inventory.PickupMessage "";
	}
Didn't work
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by ZZYZX »

You don't need to set any properties for the actor to be registered, it only needs DoomEdNum and a ZScript class.
Either you are doing something wrong or it's a bug. I'll try to use your literal actor/mapinfo definition a bit later and see if it works.

Wait, actually, I have an idea.
Did you load gzdoom.pk3 as resource? That one is optional for everything else, but REQUIRED for ZScript.
The reason for this is that unlike DECORATE, in ZScript DoomEdNums are split from the classes themselves, and not all classes are actors. This means that I need gzdoom.pk3 to be able to properly trace the class hierarchy to the Actor class.
User avatar
Pedro vc
Posts: 167
Joined: Fri Oct 10, 2008 4:56 pm

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Pedro vc »

ZZYZX wrote:You don't need to set any properties for the actor to be registered, it only needs DoomEdNum and a ZScript class.
Either you are doing something wrong or it's a bug. I'll try to use your literal actor/mapinfo definition a bit later and see if it works.

Wait, actually, I have an idea.
Did you load gzdoom.pk3 as resource? That one is optional for everything else, but REQUIRED for ZScript.
The reason for this is that unlike DECORATE, in ZScript DoomEdNums are split from the classes themselves, and not all classes are actors. This means that I need gzdoom.pk3 to be able to properly trace the class hierarchy to the Actor class.
Adding gzdoom.pk3 as a resource solved it, thanks
User avatar
Kappes Buur
 
 
Posts: 4179
Joined: Thu Jul 17, 2003 12:19 am
Graphics Processor: nVidia (Legacy GZDoom)
Location: British Columbia, Canada
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Kappes Buur »

ZZYZX wrote:You are doing it wrong.
I never got Refmanual to work with HTML Help Workshop, so I am decompiling it with CHM Decoder freeware.

ZZYZX wrote:File lookup differs between MS help and directly looking at the HTMLs. If I "fix" that, it won't work in help viewer then.
That's strange, it is the only page which is not styled.
User avatar
Ghost Prototype
Posts: 185
Joined: Sun May 19, 2013 12:22 pm
Location: Philadelphia

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Ghost Prototype »

Polyobj Door Swing's speed cannot go below 0 in builder, but can do so with ACS.
User avatar
ZZYZX
 
 
Posts: 1384
Joined: Sun Oct 14, 2012 1:43 am
Location: Ukraine
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by ZZYZX »

I believe that's because in Hexen format the arguments are bytes, which means they can go 0 to 255 only.
User avatar
Ghost Prototype
Posts: 185
Joined: Sun May 19, 2013 12:22 pm
Location: Philadelphia

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by Ghost Prototype »

I converted my map to UDMF format. Now GzDoom just crash when I test map :shock:
User avatar
riderr3
Posts: 86
Joined: Tue Apr 12, 2011 3:03 pm
Location: Deepest reaches
Contact:

Re: GZDoomBuilder-Bugfix, a maintenance fork of GZDB

Post by riderr3 »

What is this black squares?

http://i.imgur.com/7Npck2A.jpg

I go back to r2949 because I need Visplane Explorer now.

Also program is crashing sometimes when zooming in VE mode and clicking "open doors".
Last edited by wildweasel on Mon Apr 03, 2017 2:19 pm, edited 1 time in total.
Reason: Spoilers do not stop images from loading and make them harder to view. Have changed to a clickable URL instead.
Locked

Return to “Abandoned/Dead Projects”