Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

script problems


Darthkenobi
 Share

Recommended Posts

Why do you need this script line if your script is 'on' the article of clothing?

GetIsID Middlepants02female 
Look at it this way (its also covered in my class on the 'IF' statement) The IF can be confusing depending on how you set it up. This says this: If A=1 then do somethingA, else if A=2 then do somethingB
If A=1
do somethingA
elseif A=2
do somethingB
endif
[/code] This says this: If A=1 AND B=2 then do somethingA, else if A=1 AND B not equal 2 then somethingB.
[code]if A=1
if B=2
do somethingA
else
do somethingB
endif
endif

Link to comment
Share on other sites

Why do you need this script line if your script is 'on' the article of clothing?

GetIsID Middlepants02female 
Look at it this way (its also covered in my class on the 'IF' statement) The IF can be confusing depending on how you set it up. This says this: If A=1 then do somethingA, else if A=2 then do somethingB
If A=1

   do somethingA

elseif A=2

   do somethingB

endif

This says this: If A=1 AND B=2 then do somethingA, else if A=1 AND B not equal 2 then somethingB.
if A=1

   if B=2

      do somethingA

   else

      do somethingB

   endif

endif

i don't really understand script yet i was just trying to make it work any way i could to be honest i think i'm going to officialy shelve the script until i take your class

(added statement) to everybody else thank you for your help and time but this script is now officialy shelved for the time being until such time as i do understand script

Edited by Darthkenobi
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...