three basic questions - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: three basic questions (/Thread-three-basic-questions) |
three basic questions - jexnico - 03-11-2018 06:06 PM hello guys i have three basic questions first: how to remove this message that appears every time a player connects or disconnects from my server? second: how to remove the prefix "a" or "an" from the front of the item names? third: how do i activate the damage or the damage received that appears on the players? thanks for the attention RE: three basic questions - Leonidas - 03-11-2018 06:26 PM // Show people joining/leaving the server. 0 disables, 2 enables staff only. ArriveDepartMsg=2 // 2 sets it so only staff will see a joining/leaving message. // OF_NoPrefix 00004000 // Don't show "a" and "an" prefix on item names (this is in sphere.ini) // FeatureAOS, used to control AOS expansion features // FEATURE_AOS_UPDATE_A 01 // AOS Monsters, Map // FEATURE_AOS_UPDATE_B 02 // Tooltip, Fightbook, Necro/paladin on creation, Single/Six char selection screen, Skills, Newer spellbook support // FEATURE_AOS_POPUP 04 // PopUp Menus // FEATURE_AOS_DAMAGE 08 // Show damage values above char head when deal/receive any damage FeatureAOS = 08 Need to enable "FEATURE_AOS_DAMAGE" in your sphere.ini with "FeatureAOS = 08" RE: three basic questions - jexnico - 03-11-2018 11:11 PM (03-11-2018 06:26 PM)Leonidas Wrote: // Show people joining/leaving the server. 0 disables, 2 enables staff only. everything perfect, ty Leonidas |