Thread: Help on Sign
View Single Post
  #3  
Old 05-12-2001, 08:45 AM
WeirdmanI9 WeirdmanI9 is offline
Banned
WeirdmanI9's Avatar
Join Date: Mar 2001
Location: Laying Low From The Police
Posts: 1,816
WeirdmanI9 is on a distinguished road
Send a message via AIM to WeirdmanI9 Send a message via Yahoo to WeirdmanI9
NPC Code:
 if (strcontains(#g,Admin)) {
if (playerchats) {
if (playersays(update sign)) {
set signupdating;
}
}
}

if (playerchats && signupdating) {
setstring server.sign#,#c;
unset signupdating;
}



==Code For Sign==
NPC Code:
setgif sign.gif;
if (playertouchsme) {
say2 server.sign#;
}



I don't know about line breaks, though, when I test this it doesn't work for me, maybe it'll work if you have different lines as different strings.
Reply With Quote