View Single Post
06/28/23, 12:59 AM   #2
ExoY
 
ExoY's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2020
Posts: 89
Thumbs up

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
  Reply With Quote