It seems to stop and sit for me when I try to use them. Does anyone know why? I have Rev #28.
It seems to stop and sit for me when I try to use them. Does anyone know why? I have Rev #28.
They both work fine for me.
Odd, because it always idles at either of them for me :/.
I use this:
If InvFull Then
That right?
if (InvFull) then
and yeah that shoud work, it works for me.
Your walking/procedure that comes after that, is either called upon wrong or isnt working properly, such as if you call on ddtm walking after, but it cant find the ddtm.
“Ignorance, the root and the stem of every evil.”
No, I have this:
If InvFull Then
DropAll;
if InvFull then = if(InvFull)then
The parentheses never make a difference unless it uses I believe a declarative variable (?).
And, hmmm. Idk what to tell you.
the parenthesis calls the result true correct? for exampleSCAR Code:if result then
doesnt declare the result as true as
SCAR Code:if (result) then
i think anyways, try adding parenthesis around the invfull, if that doesnt work post script and ill give you some help.
-Blumblebee
“Ignorance, the root and the stem of every evil.”
SCAR Code:if Result then
does the same thing as
SCAR Code:if(Result)then
as both of them return true.
Same as:
SCAR Code:if not Result then
does the same as
SCAR Code:if(not(Result))then
Adding the parentheses won't make a difference.
There are currently 1 users browsing this thread. (0 members and 1 guests)