View Single Post
  #8  
Old 04-12-2001, 07:53 PM
grim_squeaker_x grim_squeaker_x is offline
Retired Oldbie
grim_squeaker_x's Avatar
Join Date: Mar 2001
Posts: 3,084
grim_squeaker_x will become famous soon enough
Blah.

I'm bored so blah:
NPC Code:
//Newspaper code
if (playerchats&&strequals(#c,buy newspaper)&&!isweapon) {
if (playerrupees>=5) {
if (!hasweapon(Newspaper)) {
toweapons newspaper;
say2 Here you go.;
}
else say2 You've already got one.;
}
else say2 You need more Gralats!;
}
if (weaponfired) {
say2 #s(server.news);
destroy;
}


NPC Code:
//News poster code
if (playerchats&&strequals(#g,editor)) {
if (strequals(#c,edit news)&&this.mode==0) this.mode=1;
else {
setstring server.news,#c;
this.mode=0;
}
}


This is a really primitive example of how you could make one of those things
__________________

Reply With Quote