Author Topic: "Forger" scripts? [Solved]  (Read 1753 times)

Legacy_Grani

  • Hero Member
  • *****
  • Posts: 1040
  • Karma: +0/-0
"Forger" scripts? [Solved]
« Reply #15 on: February 15, 2012, 11:12:12 am »


               
               
               

               


                     Modifié par Grani, 15 février 2012 - 11:12 .
                     
                  


            

Legacy_Birdman076

  • Sr. Member
  • ****
  • Posts: 320
  • Karma: +0/-0
"Forger" scripts? [Solved]
« Reply #16 on: February 15, 2012, 12:50:26 pm »


               Thanks GOG, as always an outstanding job. I didn't really think about the description and had no requests for it, but I will be including it now '<img'>
               
               

               
            

Legacy_Grani

  • Hero Member
  • *****
  • Posts: 1040
  • Karma: +0/-0
"Forger" scripts? [Solved]
« Reply #17 on: February 15, 2012, 04:56:09 pm »


               I basically need this "text appears when" script with the condition that a weapon is stored in a container. Could anyone do such script, please?
               
               

               
            

Legacy_GhostOfGod

  • Hero Member
  • *****
  • Posts: 1490
  • Karma: +0/-0
"Forger" scripts? [Solved]
« Reply #18 on: February 15, 2012, 05:20:20 pm »


               I could take a look after I get back up. zzzzz......zzzzzz......zzzzz
               
               

               
            

Legacy_Grani

  • Hero Member
  • *****
  • Posts: 1040
  • Karma: +0/-0
"Forger" scripts? [Solved]
« Reply #19 on: February 15, 2012, 06:45:14 pm »


               Sure, thanks in advance '<img'>

Edit: It looks like there was already such script in Forge of Wonders system, so I simply used this one. '<img'> Thanks for help, all problems solved!
               
               

               


                     Modifié par Grani, 15 février 2012 - 07:22 .
                     
                  


            

Legacy__Guile

  • Hero Member
  • *****
  • Posts: 1308
  • Karma: +0/-0
"Forger" scripts? [Solved]
« Reply #20 on: February 20, 2012, 12:58:40 am »


               

Grani wrote...

I basically need this "text appears when"
script with the condition that a weapon is stored in a container. Could
anyone do such script, please?


Change the tagnames below to the actual tagnames of the chest & wpn...


string sChest = "chesttagname";
string sWpn = "wpntagname";

int StartingConditional()
{int i = FALSE; if(GetItemPossessedBy(GetObjectByTag(sChest), sWpn)!=ObjectInvalid){ i = TRUE; } return i;}
               
               

               


                     Modifié par _Guile, 20 février 2012 - 01:00 .