View Single Post
  #5  
Old 12-24-2007, 04:14 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by cbkbud View Post
Why do people use +Something in mudlibs a lot of the time?
Because Graal Kingdoms uses + for weapon scripts for the mud.
Quote:
Originally Posted by Angel_Light View Post
I do it doe organization, I start all my system scripts with -, all mud with +, I use !, $ and * on few weps too.
Thats silly. I keep my weapons nicely named on Val Dev, here is the array of weapons added on login:
PHP Code:
  // Names of weapons to add to player on login.
  // Automatic: ObjectTypes, System, -ScriptedRC
  
this.addweapons = {
    
// Systems
    
"SysChat",
    
"SysNick",
    
"SysTileDefs",
    
"SysTime",
    
"SysMsg",
    
"SysOutfit",
    
"SysVision",
    
"SysBoard",
    
// Mud
    
"MudControl",
    
"MudWeapons",
    
// GUIs
    
"GuiCharacterSelect",
    
"GuiProfiles",
    
"GuiInfoDialog",
    
"GuiInventory",
    
"GuiHud",
    
"GuiNpcDialog",
    
"GuiChatHistory",
    
"GuiInputDialog",
    
"GuiBook",
    
"GuiBoard",
    
"GuiPlaylist",
    
"GuiLevelDesc",
    
// Other
    
"DialogControl",
    
"Console",
  }; 
__________________
Reply With Quote