Yoko

All sides of Injection
It is currently 2025-12-25 16:02:19

All times are UTC+02:00




Post new topic  Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Error in simple script
PostPosted: 2004-07-07 21:23:31 
Offline

Joined: 2004-07-02 22:58:37
Posts: 33
Code:
var mocban="banco"
sub selmocban()
   if (mocban=="banco") then
      uo.exec("setreceivingcontainer banco")
      uo.print(">> Loot al Banco <<")
      uo.print(">> Loot al Banco <<")
      mocban="mochila"
   else
      uo.exec("setreceivingcontainer mochila")
      uo.print(">> Loot ala Mochila <<")
      uo.print(">> Loot ala Mochila <<")
      mocban="banco"
   end if
end sub


Banco and mochila are objects
This script must work as a switch, option 1 container banco, option 2 container mochila
Now it only switch one container an not change to another.

Help Me!
Thank you. =)


Top
   
 Post subject:
PostPosted: 2004-07-08 10:05:40 
Offline
Site Admin
User avatar

Joined: 2004-04-03 16:49:38
Posts: 1964
global variables used through command uo.SetGlobal("name","textvalue") and uo.GetGlobal("name")


Top
   
 Post subject:
PostPosted: 2004-07-08 21:42:16 
Offline

Joined: 2004-07-02 22:58:37
Posts: 33
Final Script
Thx Yoko :)
Code:
sub selmocban()
   if (uo.GetGlobal("mocban")=="banco") then
      uo.exec("setreceivingcontainer banco")
      uo.print(">> Loot al Banco <<")
      uo.print(">> Loot al Banco <<")
      uo.SetGlobal("mocban","mochila")
   else
   uo.exec("setreceivingcontainer mochila")
      uo.print(">> Loot ala Mochila <<")
      uo.print(">> Loot ala Mochila <<")
      uo.SetGlobal("mocban","banco")
   end if
end sub


Top
   
 Post subject:
PostPosted: 2004-07-08 22:01:59 
Offline

Joined: 2004-07-02 22:58:37
Posts: 33
This is wrong???

Code:
sub loot()
uo.exec("load loot.sc")
end sub


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 4 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: Bing [Bot] and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Limited