ItsMods

Full Version: Add To Favorites Button
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Yo I was trying to add a button on my custom menu to add the server automatically to favorite servers. Anyone knows how to make this?

PHP Code:
itemDef 
        

            
type            ITEM_TYPE_BUTTON 
            rect            
-100 130 200 20 HORIZONTAL_ALIGN_CENTER VERTICAL_ALIGN_CENTER
            forecolor        1 1 1 0.8 
            text            
"Add Server to Favorites"
            
textStyle         ITEM_TEXTSTYLE_SHADOWED 
            textFont        UI_FONT_EXTRABIG
            textScale        FONTSCALE_SUBBIG
            textStyle        CHOICE_TEXTSTYLE 
            textAlign        ITEM_ALIGN_MIDDLE_CENTER 
            visible         1
            action
            
{
                
play CHOICE_ACTION_SOUND
                
//Need code that add to fav here
                
close self;
            }
    
            
mouseEnter 
            

                
play CHOICE_FOCUS_SOUND
                
setcolor forecolor 0.98 0.83 0.25 0.8
            

            
mouseExit
            
{
                
setcolor forecolor 1 1 1 0.8 
            
}