View Single Post
06/28/23, 01:09 AM   #3
sinnereso
AddOn Author - Click to view addons
Join Date: Oct 2022
Posts: 247
Originally Posted by ExoY View Post
Wouldnt just compare strings directly solve the problem?

Lua Code:
  1. if string1 == string2 then
  2.  -- do stuff if they are the same
  3. end

or

Lua Code:
  1. if string1 ~= string2 then
  2.  -- do stuff if they are not the same
  3. end

depending on implementation
LOL! omg I was soo into working with the string.find etc I missed the obvious thank you
  Reply With Quote