Yeah.. its me again, Inscription?
Yeah.. its me again, Inscription?
How come inscription does not work? I can click the skill, click some blank scrolls and it doesnt do anything after that
Hey Poi...welcome to the lovely POL community. Take your coat off and bend on over.
Your question is a tough one. Are you using POL095? Did you get your server from someone else or is it distro?
You might try looking up the inscription.src (assuming you have one) and stick some Print statements in different places in the script. That will force the script to print things to your console so you can track what parts of the script are running and which aren't. It's a great troubleshooting tool.
use uo;
use os;
include "include\perversionofcoding";
program inscription ( character )
Print ( "Inscription runs.");
var scribe := ( character );
if ( !scribe )
Print ( "The script didn't get a character passed to it, UHOH!" );
return;
endif
etc, etc, etc.
Your question is a tough one. Are you using POL095? Did you get your server from someone else or is it distro?
You might try looking up the inscription.src (assuming you have one) and stick some Print statements in different places in the script. That will force the script to print things to your console so you can track what parts of the script are running and which aren't. It's a great troubleshooting tool.
use uo;
use os;
include "include\perversionofcoding";
program inscription ( character )
Print ( "Inscription runs.");
var scribe := ( character );
if ( !scribe )
Print ( "The script didn't get a character passed to it, UHOH!" );
return;
endif
etc, etc, etc.