Register forum user name Search FAQ

Gammon Forum

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 ➜ General ➜ Sharing Variables

Sharing Variables

It is now over 60 days since the last post. This thread is closed.     Refresh page


Posted by Rhinoa   United Kingdom  (37 posts)  Bio
Date Mon 31 Dec 2001 03:44 AM (UTC)
Message
Is there a way of sharing variables between 2 characters? (Both operated by the same player)
Top

Posted by Nick Gammon   Australia  (23,173 posts)  Bio   Forum Administrator
Date Reply #1 on Mon 31 Dec 2001 09:45 PM (UTC)

Amended on Wed 02 Jan 2002 09:53 PM (UTC) by Nick Gammon

Message
You mean both on your copy of MUSHclient but in different worlds? Yes, that is easy. :)

You need to get an "object reference" to the other world, and then use it to get or set variables. Here is a code snippet to illustrate the idea ...


dim otherworld
dim hp

set otherworld = world.getworld ("world2")

if otherworld is nothing then
world.note "World world2 is not open"
exit sub
end if

hp = otherworld.getvariable ("hp")



In this example "world2" is the second character, the "getworld" line gets a reference to it into the "otherworld" variable. Then you can use "otherworld.getvariable" to get the variable contents.

Of course, you can then use anything else (eg. setvariable, note etc.) on the other world.


otherworld.note "Hi there"

- Nick Gammon

www.gammon.com.au, www.mushclient.com
Top

Posted by Rhinoa   United Kingdom  (37 posts)  Bio
Date Reply #2 on Wed 02 Jan 2002 05:02 PM (UTC)
Message
Thanx...

Worked perfectly...

~Rhinoa~
Top

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.


13,659 views.

It is now over 60 days since the last post. This thread is closed.     Refresh page

Go to topic:           Search the forum


[Go to top] top

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.