mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-03 15:45:32 +00:00
allow OnPCEquip special variable to be of any type
This commit is contained in:
parent
09f9557ecb
commit
0fc5ee5149
1 changed files with 21 additions and 4 deletions
|
@ -109,11 +109,28 @@ namespace MWWorld
|
|||
}
|
||||
}
|
||||
|
||||
/* Set OnPCEquip Variable on item's script, if it has a script with that variable declared */
|
||||
if(equipped && actor == MWBase::Environment::get().getWorld()->getPlayer().getPlayer() && MWWorld::Class::get(*it).getScript(*it) != ""){
|
||||
int index = MWBase::Environment::get().getScriptManager()->getLocals(MWWorld::Class::get(*it).getScript(*it)).getIndex("onpcequip");
|
||||
std::string script = MWWorld::Class::get(*it).getScript(*it);
|
||||
|
||||
/* Set OnPCEquip Variable on item's script, if the player is equipping it, and it has a script with that variable declared */
|
||||
if(equipped && actor == MWBase::Environment::get().getWorld()->getPlayer().getPlayer() && script != "")
|
||||
{
|
||||
Compiler::Locals locals = MWBase::Environment::get().getScriptManager()->getLocals(script);
|
||||
int index = locals.getIndex("onpcequip");
|
||||
char type = locals.getType("onpcequip");
|
||||
if(index != -1)
|
||||
(*it).mRefData->getLocals().mShorts.at (index) = 1;
|
||||
{
|
||||
switch(type)
|
||||
{
|
||||
case 's':
|
||||
(*it).mRefData->getLocals().mShorts.at (index) = 1; break;
|
||||
|
||||
case 'l':
|
||||
(*it).mRefData->getLocals().mLongs.at (index) = 1; break;
|
||||
|
||||
case 'f':
|
||||
(*it).mRefData->getLocals().mFloats.at (index) = 1.0; break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue