Search found 77 matches

by Tyr
Tue Sep 19, 2006 5:37 pm
Forum: Area Building Discussion
Topic: Appropriate mob classes
Replies: 4
Views: 3294

You should really used CLASS_MONSTER. This essentially gives the mob no class and only uses stats from it race.

Tyr
by Tyr
Wed Mar 08, 2006 3:34 pm
Forum: General Discussion
Topic: Scrolls and potions
Replies: 5
Views: 3568

While there are currently no plans for this. It is not beyond the realm of possibility codewise.

Tyr
by Tyr
Thu Jan 12, 2006 9:35 pm
Forum: Area Building Discussion
Topic: Test Port Access
Replies: 1
Views: 1707

Needs to be setup on the new router. Will be same ip as the real game, port 4500.
by Tyr
Thu Jan 12, 2006 2:51 pm
Forum: Area Building Discussion
Topic: FKCheck Error's - I cant figure out the errror! Help!
Replies: 56
Views: 20672

AREA and AUTHOR should both have a ~ at the end of the line.
So should RESETMSG.

RANGES needs a $ after it.
by Tyr
Thu Dec 29, 2005 9:09 pm
Forum: General Discussion
Topic: Poison Food
Replies: 3
Views: 2723

All of those are already implemented.

spike for food and drink.


Tyr
by Tyr
Wed Dec 21, 2005 4:32 pm
Forum: General Discussion
Topic: spell focus
Replies: 24
Views: 12326

Try something like:
train 'spell focus' abjuration
by Tyr
Fri Dec 09, 2005 10:07 pm
Forum: General Discussion
Topic: Chopping wood to make kindling?
Replies: 7
Views: 4444

Logging is already coded. Waiting on area support I think.
by Tyr
Mon Dec 05, 2005 5:01 pm
Forum: Area Building Discussion
Topic: A prog to recognize words used in a smote or emote
Replies: 1
Views: 1705

Try an act_prog.
by Tyr
Tue Nov 22, 2005 6:34 pm
Forum: General Discussion
Topic: Spell Focus and Spell Mastery
Replies: 8
Views: 4923

Generally a better chance of success for the given skill level.
by Tyr
Mon Nov 21, 2005 3:30 pm
Forum: General Discussion
Topic: Spell Focus and Spell Mastery
Replies: 8
Views: 4923

Spell focus if it has not already, will be changed to work more like D&D in that it will not increase your skill level but instead make you better at casting the spell whatever your skill level is.
by Tyr
Mon Oct 24, 2005 8:54 pm
Forum: General Discussion
Topic: Still & Silent Spell Feats - Invisible Effects
Replies: 8
Views: 4772

Spellcraft is more difficult when the spell is still/silent but not impossible. This is already reflected in the code.

Tyr
by Tyr
Fri Sep 23, 2005 2:52 pm
Forum: Area Building Discussion
Topic: Request for a new room flag
Replies: 7
Views: 3771

Code could be added so that movement commands are intercepted not just on the mover but also executed against anyone following the mover.

Tyr
by Tyr
Sun Aug 07, 2005 9:04 pm
Forum: Area Building Discussion
Topic: A AFFECT_ dual wield and disguise
Replies: 3
Views: 2501

APPLY_DUAL_WIELD and APPLY_DISGUISE added.
by Tyr
Wed Jul 27, 2005 7:31 pm
Forum: General Discussion
Topic: Who List and Magic Mirror with Pkills
Replies: 6
Views: 4269

Keeping track of who is online at once is what the who command is for. In an IC sense, PCs are ALWAYS in the game so being able to see who is on the game at once is just a way of countering the fact that players have to log off sometimes. What the who list is NOT meant for is to tell you IC informat...
by Tyr
Wed Jul 06, 2005 6:50 pm
Forum: General Discussion
Topic: Death: pain or opportunity?
Replies: 53
Views: 26172

There are already two recent changes that have been coded with respect to dying. First, when you are brought back, you are now affected by the death physically. Your stats are temporarily lowered. The amount and duration they are lowered depends on how you are brought back. Reincarnation being the w...
by Tyr
Sat Jul 02, 2005 2:40 pm
Forum: Area Building Discussion
Topic: mob resets and non-sentinel mobs
Replies: 4
Views: 2114

Also mobs will no longer reset if a pc is in the room.

Tyr
by Tyr
Sat Jul 02, 2005 2:33 pm
Forum: Area Building Discussion
Topic: Further training from old trainer
Replies: 11
Views: 4015

Use the full skill name in the if string check. It will take the first word or quoted string.

if stringprefix($1) == weapon focus
or stringprefix($1) == circle stab


stringprefix will work with shortcutted names as well as the exact.

Tyr
by Tyr
Thu Jun 16, 2005 5:59 pm
Forum: Area Building Discussion
Topic: target for groups, a proposal
Replies: 7
Views: 3930

It is only run on group member in the room. It runs at the same time the rest of the greet prog does which as you say can be before the rest of the group is in. As you can see it may be better to avoid "critical" commands like that on mpgroupaction in a greet prog. I can make another comma...
by Tyr
Wed Jun 15, 2005 7:31 pm
Forum: Area Building Discussion
Topic: target for groups, a proposal
Replies: 7
Views: 3930

Syntax: mpgroupaction <target> <command>

Target can be $n or any other character variable.

Command can also include some character variables such as $i, $n, and $f. The command will be executed for each character in targets group.

Tyr
by Tyr
Wed Jun 01, 2005 2:36 am
Forum: Area Building Discussion
Topic: target for groups, a proposal
Replies: 7
Views: 3930

I can make a command that makes a command execute on all members of a group.