Jump to content

Somehow the mod I made doesn't work on other PC


ks374

Recommended Posts

Posted

 

Hi all, I've spent several hours trying to solve this problem but I can't figure it out myself...

 

Here is the link to my mod: 

 

So I made this mod. It works perfectly on my PC, I published it, and it seems like it works for some people and doesn't work for the others.

 

The key problem is that I made a magic effect to summon an object (a door) in front of the player. and for some people only the visual effect shows up but nothing comes. The door did move away since it's no more in its original place... 

 

The error log from papurys look like: 

Quote

        ERROR: Unable to bind script Summon_HeDoor to Active effect 32 on  (00000014) because their base types do not match

 

The script is like: 

Quote

 

Scriptname Summon_SheDoor extends activemagiceffect  
Actor Property PlayerRef Auto
ObjectReference Property itemref Auto

Event OnEffectStart(Actor akTarget, Actor akCaster)
    float playerAngleZ = PlayerRef.GetAngleZ()
    float posX = 100.0 * Math.Sin(playerAngleZ)
    float posY = 100.0 * Math.Cos(playerAngleZ)
    float posZ = playerref.getheight() - 100
    itemref.MoveTo((playerRef as objectreference), posX, posY, posZ, False)
EndEvent

 

 

I don't really understand the log. The script is attached to an effect but why it's on the player? 

 

Also, there are two scripts of identical content, while it seems sometimes only one of them work... 

 

Thanks if you have any suggestions! 

 

 

Posted

I've tried several methods, they all work on my PC but doesn't work on another. 

Could it possibly be that I'm not uploading my mod correctly? 

I just zip the .esp file... 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...