PDA

View Full Version : -*bug*-


RedBull
06-16-2005, 12:15 AM
I'm wondering if their is a known BUG in Lscript and CustomObject Handler?

I can get all others classes to work, except CustomObject handler.....
Even the direct LSCommander to .LS will cause the same problem...
I came across this bug in 7.0, but figured, it was me or would be fixed by now....

So can anyone confrim if it's my code, (i doubt it!) or a BUG? please!
This will mean my plugin, can't be made if it is...

Iv'e used "LScript" as the plugin type below, but Effector or Item Shape, also refuse to work, But the LScript plugin, is viewed by LSCommander so should work.

Below is the direct code from LScommander (but it doesn't work)

It's identical to my own code, except i wanted to add "Item Shape"
and "Effector" niether work.... (I can get all other Handlers to work as expected)

Anyone Confirm?

@warnings

generic
{
ApplyServer("CustomObjHandler","LScript");
}

evenflcw
06-16-2005, 09:27 AM
The names you're using are only what the plugins are seen as or called in the interface, these are not the plugins/servers actual names. The correct name for Item Shape isn't "Item Shape", it's "LW_ItemShape". You can find these proper names in the LWEXT8.cfg file, which contains a list of all loaded plugins.

generic
{
ApplyServer( "CustomObjHandler", "LW_ItemShape" );
}

RedBull
06-16-2005, 08:18 PM
Thanks, i looked for the REAL name in the Edit Plugins field, and it is Item Shape
or itemshape.p I tried Item_Shape... Dagnabbit! :)

Sliders work fine, and you don't need to specify "LW_Sliders"
You can just use "Sliders" So i think it's a little confusing....

Thanks for the clarification.