ItsMods

Full Version: Menus help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi guys,
there is a small problem with MW2 mod. Take a look at this code
http://pastebin.com/fFd5jzSQ
The window is supposed to appear smoothly, but what it does is just bump up without any transitions. Fix?
Come on guys can anyone help with this?
//up
I don't get what you're trying to do, mind posting a picture?
Soo, what is wrong with this menu ?

Offtopic: What a spammish menu Awesome
The menu to the right (servers) should have animation. And it does not.
(03-13-2013, 20:11)G-Man Wrote: [ -> ]The menu to the right (servers) should have animation. And it does not.


Does console prints something? #epicenglishplox
As i remember if some thingy won't work, then this function isn't exist.
onOpen
{
"focusFirst";
"lerp" x "from" "300" "to" 0 "over" "0.15";


}
onRequestClose
{
"lerp" x "from" 0 "to" "300" "over" "0.15";
}
onClose
{
if ( dvarbool(static)( 6 ) )
{
"execnow" "splitscreencontrols";
}

}

That's the problem, how to fix?
(03-14-2013, 11:44)CheGuevara Wrote: [ -> ]onOpen
{
"focusFirst";
"lerp" x "from" "300" "to" 0 "over" "0.15";


}
onRequestClose
{
"lerp" x "from" 0 "to" "300" "over" "0.15";
}
onClose
{
if ( dvarbool(static)( 6 ) )
{
"execnow" "splitscreencontrols";
}

}

That's the problem, how to fix?

Uhh, functions such as execnow, and .. .ehm EVERY function must be without " " "
like
execnow "something.cfg";
lerp "30";
I think that's problem.
Lerp is not in "" either. Go check the full PS3 dumps on DerpD1/Mods. It's there and it can help you out.
Pages: 1 2