Scripting Issue

Post » Fri May 13, 2011 7:19 pm

Ok, what i wish to do with the following script is, just like the Amulet of Kings but with a Sword, but instead of never using it, i wish to use it ONLY when the Reference that is equiping it its at Strength level of 90 or higher so here is the Code:

ScriptName SwordOfKingsShort ActorValueCodeRef UserBegin OnEquip	Set User.Ref to GetContainer	If GetContainer player==1	Set User.Ref to GetActorValue Strength	If User.ActorValueCode 0<90	MessageBox"You dont have enough Strength to carry this Sword."	User.RemoveItem SwordOfKings 1	endif	elseIf User.ActorValueCode 0>=90	activate   endIfend


I wish that in the script editor ther would be a Check button or something to correct whatever mess you've done in the script

Any Help will be Apreciatted, Thank you For your time

Jo?o :wave:
User avatar
Monika
 
Posts: 3469
Joined: Wed Jan 10, 2007 7:50 pm

Post » Fri May 13, 2011 5:37 pm

Since you're using a message box, I assume the player will be the only ref that will use the sword.
Something along this line would be better and simpler:

ScriptName SwordOfKingsOSBegin OnEquip	If ( player.GetActorValue Strength < 90 )		MessageBox"You dont have enough Strength to carry this Sword."		(some method of Unequip - look at the Wiki article I linked to outside the codebox)	else		activate	endifend



Another assumption: This sword has some property like and enchantment or buff to the player.
if so, I don't think you need the activate.

http://cs.elderscrolls.com/constwiki/index.php/Generic_Unequip
User avatar
Tiffany Carter
 
Posts: 3454
Joined: Wed Jul 19, 2006 4:05 am

Post » Fri May 13, 2011 7:56 am

I haven't tested it yet

When i do i'll let you know if its what i wanted, thanks anyway

By the wat, the "activate" was just something that i added to tell the script to continue, but i dont really think its necessary .D
User avatar
Sian Ennis
 
Posts: 3362
Joined: Wed Nov 08, 2006 11:46 am

Post » Fri May 13, 2011 9:01 pm

It worked :D

And, i just found out that

Set User.Ref to GetContainer

User.Ref would be the object linked to the script, Wouldnt really work, it only works with the Player reference

Im too lazy to get the first Script i showed back and changed user.Ref to Player but i think it would work if i have done that change

Thanks!
User avatar
Emzy Baby!
 
Posts: 3416
Joined: Wed Oct 18, 2006 5:02 pm


Return to IV - Oblivion