mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-18 20:48:26 +00:00
Merge branch 'master' of https://github.com/EQEmu/Server into lsid
This commit is contained in:
+86
-86
@@ -2234,92 +2234,92 @@ luabind::scope lua_register_message_types() {
|
||||
return luabind::class_<MessageTypes>("MT")
|
||||
.enum_("constants")
|
||||
[
|
||||
luabind::value("NPCQuestSay", MT_NPCQuestSay),
|
||||
luabind::value("Say", MT_Say),
|
||||
luabind::value("Tell", MT_Tell),
|
||||
luabind::value("Group", MT_Group),
|
||||
luabind::value("Guild", MT_Guild),
|
||||
luabind::value("OOC", MT_OOC),
|
||||
luabind::value("Auction", MT_Auction),
|
||||
luabind::value("Shout", MT_Shout),
|
||||
luabind::value("Emote", MT_Emote),
|
||||
luabind::value("Spells", MT_Spells),
|
||||
luabind::value("YouHitOther", MT_YouHitOther),
|
||||
luabind::value("OtherHitsYou", MT_OtherHitsYou),
|
||||
luabind::value("YouMissOther", MT_YouMissOther),
|
||||
luabind::value("OtherMissesYou", MT_OtherMissesYou),
|
||||
luabind::value("Broadcasts", MT_Broadcasts),
|
||||
luabind::value("Skills", MT_Skills),
|
||||
luabind::value("Disciplines", MT_Disciplines),
|
||||
luabind::value("Unused1", MT_Unused1),
|
||||
luabind::value("DefaultText", MT_DefaultText),
|
||||
luabind::value("Unused2", MT_Unused2),
|
||||
luabind::value("MerchantOffer", MT_MerchantOffer),
|
||||
luabind::value("MerchantBuySell", MT_MerchantBuySell),
|
||||
luabind::value("YourDeath", MT_YourDeath),
|
||||
luabind::value("OtherDeath", MT_OtherDeath),
|
||||
luabind::value("OtherHits", MT_OtherHits),
|
||||
luabind::value("OtherMisses", MT_OtherMisses),
|
||||
luabind::value("Who", MT_Who),
|
||||
luabind::value("YellForHelp", MT_YellForHelp),
|
||||
luabind::value("NonMelee", MT_NonMelee),
|
||||
luabind::value("WornOff", MT_WornOff),
|
||||
luabind::value("MoneySplit", MT_MoneySplit),
|
||||
luabind::value("LootMessages", MT_LootMessages),
|
||||
luabind::value("DiceRoll", MT_DiceRoll),
|
||||
luabind::value("OtherSpells", MT_OtherSpells),
|
||||
luabind::value("SpellFailure", MT_SpellFailure),
|
||||
luabind::value("Chat", MT_Chat),
|
||||
luabind::value("Channel1", MT_Channel1),
|
||||
luabind::value("Channel2", MT_Channel2),
|
||||
luabind::value("Channel3", MT_Channel3),
|
||||
luabind::value("Channel4", MT_Channel4),
|
||||
luabind::value("Channel5", MT_Channel5),
|
||||
luabind::value("Channel6", MT_Channel6),
|
||||
luabind::value("Channel7", MT_Channel7),
|
||||
luabind::value("Channel8", MT_Channel8),
|
||||
luabind::value("Channel9", MT_Channel9),
|
||||
luabind::value("Channel10", MT_Channel10),
|
||||
luabind::value("CritMelee", MT_CritMelee),
|
||||
luabind::value("SpellCrits", MT_SpellCrits),
|
||||
luabind::value("TooFarAway", MT_TooFarAway),
|
||||
luabind::value("NPCRampage", MT_NPCRampage),
|
||||
luabind::value("NPCFlurry", MT_NPCFlurry),
|
||||
luabind::value("NPCEnrage", MT_NPCEnrage),
|
||||
luabind::value("SayEcho", MT_SayEcho),
|
||||
luabind::value("TellEcho", MT_TellEcho),
|
||||
luabind::value("GroupEcho", MT_GroupEcho),
|
||||
luabind::value("GuildEcho", MT_GuildEcho),
|
||||
luabind::value("OOCEcho", MT_OOCEcho),
|
||||
luabind::value("AuctionEcho", MT_AuctionEcho),
|
||||
luabind::value("ShoutECho", MT_ShoutECho),
|
||||
luabind::value("EmoteEcho", MT_EmoteEcho),
|
||||
luabind::value("Chat1Echo", MT_Chat1Echo),
|
||||
luabind::value("Chat2Echo", MT_Chat2Echo),
|
||||
luabind::value("Chat3Echo", MT_Chat3Echo),
|
||||
luabind::value("Chat4Echo", MT_Chat4Echo),
|
||||
luabind::value("Chat5Echo", MT_Chat5Echo),
|
||||
luabind::value("Chat6Echo", MT_Chat6Echo),
|
||||
luabind::value("Chat7Echo", MT_Chat7Echo),
|
||||
luabind::value("Chat8Echo", MT_Chat8Echo),
|
||||
luabind::value("Chat9Echo", MT_Chat9Echo),
|
||||
luabind::value("Chat10Echo", MT_Chat10Echo),
|
||||
luabind::value("DoTDamage", MT_DoTDamage),
|
||||
luabind::value("ItemLink", MT_ItemLink),
|
||||
luabind::value("RaidSay", MT_RaidSay),
|
||||
luabind::value("MyPet", MT_MyPet),
|
||||
luabind::value("DS", MT_DS),
|
||||
luabind::value("Leadership", MT_Leadership),
|
||||
luabind::value("PetFlurry", MT_PetFlurry),
|
||||
luabind::value("PetCrit", MT_PetCrit),
|
||||
luabind::value("FocusEffect", MT_FocusEffect),
|
||||
luabind::value("Experience", MT_Experience),
|
||||
luabind::value("System", MT_System),
|
||||
luabind::value("PetSpell", MT_PetSpell),
|
||||
luabind::value("PetResponse", MT_PetResponse),
|
||||
luabind::value("ItemSpeech", MT_ItemSpeech),
|
||||
luabind::value("StrikeThrough", MT_StrikeThrough),
|
||||
luabind::value("Stun", MT_Stun)
|
||||
luabind::value("NPCQuestSay", Chat::NPCQuestSay),
|
||||
luabind::value("Say", Chat::Say),
|
||||
luabind::value("Tell", Chat::Tell),
|
||||
luabind::value("Group", Chat::Group),
|
||||
luabind::value("Guild", Chat::Guild),
|
||||
luabind::value("OOC", Chat::OOC),
|
||||
luabind::value("Auction", Chat::Auction),
|
||||
luabind::value("Shout", Chat::Shout),
|
||||
luabind::value("Emote", Chat::Emote),
|
||||
luabind::value("Spells", Chat::Spells),
|
||||
luabind::value("YouHitOther", Chat::YouHitOther),
|
||||
luabind::value("OtherHitsYou", Chat::OtherHitYou),
|
||||
luabind::value("YouMissOther", Chat::YouMissOther),
|
||||
luabind::value("OtherMissesYou", Chat::OtherMissYou),
|
||||
luabind::value("Broadcasts", Chat::Broadcasts),
|
||||
luabind::value("Skills", Chat::Skills),
|
||||
luabind::value("Disciplines", Chat::Disciplines),
|
||||
luabind::value("Unused1", Chat::Unused1),
|
||||
luabind::value("DefaultText", Chat::DefaultText),
|
||||
luabind::value("Unused2", Chat::Unused2),
|
||||
luabind::value("MerchantOffer", Chat::MerchantOffer),
|
||||
luabind::value("MerchantBuySell", Chat::MerchantExchange),
|
||||
luabind::value("YourDeath", Chat::YourDeath),
|
||||
luabind::value("OtherDeath", Chat::OtherDeath),
|
||||
luabind::value("OtherHits", Chat::OtherHitOther),
|
||||
luabind::value("OtherMisses", Chat::OtherMissOther),
|
||||
luabind::value("Who", Chat::Who),
|
||||
luabind::value("YellForHelp", Chat::YellForHelp),
|
||||
luabind::value("NonMelee", Chat::NonMelee),
|
||||
luabind::value("WornOff", Chat::SpellWornOff),
|
||||
luabind::value("MoneySplit", Chat::MoneySplit),
|
||||
luabind::value("LootMessages", Chat::Loot),
|
||||
luabind::value("DiceRoll", Chat::DiceRoll),
|
||||
luabind::value("OtherSpells", Chat::OtherSpells),
|
||||
luabind::value("SpellFailure", Chat::SpellFailure),
|
||||
luabind::value("Chat", Chat::ChatChannel),
|
||||
luabind::value("Channel1", Chat::Chat1),
|
||||
luabind::value("Channel2", Chat::Chat2),
|
||||
luabind::value("Channel3", Chat::Chat3),
|
||||
luabind::value("Channel4", Chat::Chat4),
|
||||
luabind::value("Channel5", Chat::Chat5),
|
||||
luabind::value("Channel6", Chat::Chat6),
|
||||
luabind::value("Channel7", Chat::Chat7),
|
||||
luabind::value("Channel8", Chat::Chat8),
|
||||
luabind::value("Channel9", Chat::Chat9),
|
||||
luabind::value("Channel10", Chat::Chat10),
|
||||
luabind::value("CritMelee", Chat::MeleeCrit),
|
||||
luabind::value("SpellCrits", Chat::SpellCrit),
|
||||
luabind::value("TooFarAway", Chat::TooFarAway),
|
||||
luabind::value("NPCRampage", Chat::NPCRampage),
|
||||
luabind::value("NPCFlurry", Chat::NPCFlurry),
|
||||
luabind::value("NPCEnrage", Chat::NPCEnrage),
|
||||
luabind::value("SayEcho", Chat::EchoSay),
|
||||
luabind::value("TellEcho", Chat::EchoTell),
|
||||
luabind::value("GroupEcho", Chat::EchoGroup),
|
||||
luabind::value("GuildEcho", Chat::EchoGuild),
|
||||
luabind::value("OOCEcho", Chat::EchoOOC),
|
||||
luabind::value("AuctionEcho", Chat::EchoAuction),
|
||||
luabind::value("ShoutECho", Chat::EchoShout),
|
||||
luabind::value("EmoteEcho", Chat::EchoEmote),
|
||||
luabind::value("Chat1Echo", Chat::EchoChat1),
|
||||
luabind::value("Chat2Echo", Chat::EchoChat2),
|
||||
luabind::value("Chat3Echo", Chat::EchoChat3),
|
||||
luabind::value("Chat4Echo", Chat::EchoChat4),
|
||||
luabind::value("Chat5Echo", Chat::EchoChat5),
|
||||
luabind::value("Chat6Echo", Chat::EchoChat6),
|
||||
luabind::value("Chat7Echo", Chat::EchoChat7),
|
||||
luabind::value("Chat8Echo", Chat::EchoChat8),
|
||||
luabind::value("Chat9Echo", Chat::EchoChat9),
|
||||
luabind::value("Chat10Echo", Chat::EchoChat10),
|
||||
luabind::value("DoTDamage", Chat::DotDamage),
|
||||
luabind::value("ItemLink", Chat::ItemLink),
|
||||
luabind::value("RaidSay", Chat::RaidSay),
|
||||
luabind::value("MyPet", Chat::MyPet),
|
||||
luabind::value("DS", Chat::DamageShield),
|
||||
luabind::value("Leadership", Chat::LeaderShip),
|
||||
luabind::value("PetFlurry", Chat::PetFlurry),
|
||||
luabind::value("PetCrit", Chat::PetCritical),
|
||||
luabind::value("FocusEffect", Chat::FocusEffect),
|
||||
luabind::value("Experience", Chat::Experience),
|
||||
luabind::value("System", Chat::System),
|
||||
luabind::value("PetSpell", Chat::PetSpell),
|
||||
luabind::value("PetResponse", Chat::PetResponse),
|
||||
luabind::value("ItemSpeech", Chat::ItemSpeech),
|
||||
luabind::value("StrikeThrough", Chat::StrikeThrough),
|
||||
luabind::value("Stun", Chat::Stun)
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user