View Single Post
  #5  
Old 12-19-2005, 07:26 PM
Grappler Grappler is offline
Registered User
Join Date: Feb 2005
Posts: 43
Grappler is on a distinguished road
So the truth comes out, Cujo...

Anyway,

NPC Code:

setmap=sp_bigmap.gif,sp_bigmap.txt,0,0;
setminimap=sp_minimap.gif,sp_bigmap.txt,0,0;



should be:

NPC Code:

setmap sp_bigmap.gif,sp_bigmap.txt,0,0;
setminimap sp_minimap.gif,sp_bigmap.txt,0,0;



Same goes for setletters.

Like ApothiX said, they're commands, not strings.

And the weapon needs a closing bracket, "}".



Edit because I don't have Gold:

NPC Code:

//#CLIENTSIDE
if(created||playerenters)
{
setletters sparitoria-letters.gif; //Command, not a variable.
setmap sp_bigmap.gif,sp_bigmap.txt,0,0; //Command, not a variable.
setminimap sp_minimap.gif,sp_bigmap.txt,0,0; //Command, not a variable.
} //Ending bracket



If that doesn't work, them something is wrong with either the .txt file or the .gif file.
Reply With Quote