Dankoo
Active Member
- Joined
- Sep 4, 2010
- Messages
- 1,007
- Reaction score
- 27
Is there a function that replaces this function in NPC
with a exact match, like
So I can use two similar messages, like
Because with msgcontains, if I write anything with "message" word in it, it will recognize as teh command u know
LUA:
if msgcontains(msg,'example') then
with a exact match, like
LUA:
if msg = (msg,"example") then
So I can use two similar messages, like
LUA:
if msg = (msg,'example') then
do this
if msg = (msg,'example 2') then
do that
Because with msgcontains, if I write anything with "message" word in it, it will recognize as teh command u know
Last edited: