Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ Lua
➜ user response (Y/N) OnPluginEnable
|
user response (Y/N) OnPluginEnable
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Lua_Newbie_Lunk
(3 posts) Bio
|
| Date
| Sun 16 Apr 2017 02:21 AM (UTC) |
| Message
| so, I have a attack spell manager, I would like it to determine if a player plays a melee class or spell-casting class so that the aliases within the plugin can be set and exectued accordingly with the same syntax... I can make the latter part happen what I need to know is how can I change this...
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE muclient>
<!-- Saved on Saturday, March 18, 2017, 6:07 AM -->
<!-- MuClient version 4.98 -->
<!-- Plugin "Attack_Spell_Manager" generated by Plugin Wizard -->
<muclient>
<plugin
name="Attack_Spell_Manager"
author="Lunk"
id="11e0de8bfe76c4700438e897"
language="Lua"
purpose="manages attack spell"
save_state="y"
date_written="2017-03-18 06:04:52"
requires="4.98"
version="1.0"
>
<description trim="y">
<![CDATA[
as help ---> displays this help
as * ---> sets attack spell to *
as ---> displays attack spell
cs * ---> casts attack spell on mob *
cs ---> casts attack spell
]]>
</description>
</plugin>
<!-- Get our standard constants -->
<include name="constants.lua"/>
<!-- Aliases -->
<aliases>
<alias
match="as"
enabled="y"
expand_variables="y"
send_to="12"
sequence="100"
>
<send>ColourNote ("red", "blue", "Attack Spell : @attack_spell")</send>
</alias>
<alias
match="as *"
enabled="y"
send_to="12"
sequence="100"
>
<send>SetVariable ("attack_spell", "%1")
ColourNote ("red", "blue", "Attack Spell set to : %1")</send>
</alias>
<alias
match="cs"
enabled="y"
expand_variables="y"
sequence="100"
>
<send>c '@attack_spell'</send>
</alias>
<alias
match="cs *"
enabled="y"
expand_variables="y"
sequence="100"
>
<send>c '@attack_spell' %1</send>
</alias>
</aliases>
<!-- Plugin help -->
<aliases>
<alias
script="OnHelp"
match="as help"
enabled="y"
>
</alias>
</aliases>
<script>
<![CDATA[
function OnHelp ()
world.Note (world.GetPluginInfo (world.GetPluginID (), 3))
end
]]>
</script>
</muclient>
with additional code as a simple question and y/n response with the addition within a simple function OnPluginEnable ? is there a way to ask a user for a response client side within a plugin? That's the key here... | | Top |
|
| Posted by
| Fiendish
USA (2,558 posts) Bio
Global Moderator |
| Date
| Reply #1 on Sun 16 Apr 2017 09:57 AM (UTC) Amended on Sun 16 Apr 2017 09:58 AM (UTC) by Fiendish
|
| Message
| |
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
14,074 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top