Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Flame Skull

DoomBuilder 2 Scripting Problems

Recommended Posts

I'm having problems with a script for a credits map I'm making to a WAD I plan to make public soon. The errors are:

Unknown Cast Type In Print Statement, SCRIPTS Line 5 & 7

The script is as follows:

#include "zcommon.acs"

script 1 open
{
setfont("bigfont");
print( S: "How a terry trap works");
delay(200);
print( S: "\cnOriginal Idea: \cgHell\ciBlade\cd64");
delay(200);
print( s: "\crMap(s) used: \cdNitro\cmActive's \chTomb \crfrom belly.wad by \cdMatthewDoomer");
delay(200);
print( s: "\cfMap Redisgning: \cgHell\ciBlade\cd64 \cf<\cgFSR\cf>");
delay(200);
print( s: "\ciInspiration(s): \crTerry\cd, \cfMatthew\cnDoomer");
delay(200);
print( s: "\cnSpecial Thanks To: \cnAquarius\ch199");
delay(200);
print( s: "\cfAnd you, the helpful doomer who is supporting this project just by playing the wad");
delay(200);
print( s: "\cfThank you for playing!");
exit_normal(1);
}

If DoomBuilder would show some sort of specific marker, like highlighting the exact spot on the code line causing the error(s), I would have already found the god damn problem myself. These fucking errors made me almost put my fist through my monitor.

Edit: To those who replied, thanks, but I figured it out only a little bit after I originally posted this. I appreciate it though.

Share this post


Link to post

This isn't a problem with DB2, but your script. Just look closely at the lines and find the difference to all your other "print" lines.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×