12 lines
196 B
Plaintext
12 lines
196 B
Plaintext
void main() {
|
|
string s;
|
|
|
|
string tag = GetTag(OBJECT_SELF);
|
|
|
|
if( tag == "FishingAllowed" ) {
|
|
s = "Fishing Allowed! Just [Use] the bait to fish.";
|
|
}
|
|
SpeakString( s );
|
|
}
|
|
|