Search found 7 matches

by gylippus
Thu Feb 01, 2018 2:42 pm
Forum: Help Forum
Topic: Another Stupid Trigger Question
Replies: 1
Views: 2363

Another Stupid Trigger Question

I want my group leader to group say something, let's say "experience". I then want one of the chars in the group to 'type' score, find the number that equals experience to next level, and then group say that number back. This is the line in the score that has the information: Experience Ne...
by gylippus
Fri Jan 26, 2018 10:01 pm
Forum: Scripts & Packages
Topic: Basic Rescue Trigger for Newbie
Replies: 1
Views: 4262

Basic Rescue Trigger for Newbie

So, I have a rescue trigger that works. It looks like this: TN: (\w+) perl regex target = matches[2] if target ~= "Honeythorn" then send("stand") send("rescue " .. target) end __________ TN stands for tank in the prompt during battle My question is this: I now have two ...
by gylippus
Fri Jan 26, 2018 1:41 pm
Forum: Help Forum
Topic: Copying Or Changing Name in Profile
Replies: 7
Views: 4895

Re: Copying Or Changing Name in Profile

I am stupid. I realized that I was hitting copy profile, changing the name, and then just hitting connect. I had to hit ENTER in the profile name box for it to register.
by gylippus
Fri Jan 26, 2018 1:14 pm
Forum: Help Forum
Topic: Copying Or Changing Name in Profile
Replies: 7
Views: 4895

Re: Copying Or Changing Name in Profile

Thank you, can you point me to a quick help file to migrate my old profiles with their triggers and aliases to the new version?
by gylippus
Fri Jan 26, 2018 1:04 pm
Forum: Help Forum
Topic: Copying Or Changing Name in Profile
Replies: 7
Views: 4895

Re: Copying Or Changing Name in Profile

I am using Mudlet 3.3.1
by gylippus
Fri Jan 26, 2018 5:30 am
Forum: Help Forum
Topic: Copying Or Changing Name in Profile
Replies: 7
Views: 4895

Copying Or Changing Name in Profile

I am a newbie and I have a stupid question: I have about 8 profiles set up in Mudlet. These profiles have connections/triggers/aliases etc. I want to change the name of the profile but I can't seem to find an easy way to do this and save my triggers and aliases. For instance, I click on the profile ...
by gylippus
Sun Dec 27, 2015 12:58 pm
Forum: Help Forum
Topic: Newbie Rescue Trigger Question
Replies: 1
Views: 2753

Newbie Rescue Trigger Question

I barely know what I am doing and any help is appreciated. I am trying to make a basic rescue trigger. In the prompt on my mud it will show tank name like this: TN: Brasidas My idea was to make a perl regex trigger so I did this: matching pattern: TN: (\w+) type perl regex code target = matches[2] i...