The Dink Network

Reply to Re: variables (reserved names?) and a question

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
April 3rd 2018, 04:20 PM
wizardg.gif
LeprochaUn
Peasant He/Him Japan bloop
Responsible for making things not look like ass 
variables that aren't global are localized to that specific script instance. So if you have a timer int in multiple scripts it wouldn't affect it. You could call the same script several times so you'd have multiple instances of it and the timer int wouldn't interfere with the other scripts.

If you want to use the value of one timer's value in another script you have to send that value over to that script somehow. The easiest method would be to store it it some recyclable global int like &mcrap and then pull the value.

I'm not entirely sure what you're trying to do, but did that help?