Ok so I've been working on adding a ship command, but have been having SO many issues no matter what I change.
The basic idea is:
!ship
returns:
๐ Aw you have no one to love ;-; don't worry, I'm here for you! ๐
!ship user1
returns:
๐ [invoker] &[user1] are [random choice based on compatibility] ๐ ([random % compatible]%) ๐
!ship [user1] [user2]
returns:
๐ [user1] & [user2] are [random choice based on compatibility] ๐ ([random % compatible]%) ๐
!ship [user1] [user1]
returns:
Try shipping two different people!
I tried:
js$(evalu1="$(touser $(1))".toLowerCase();u2="$(touser $(2))".toLowerCase();u2 = u2 == "" ? "$(user).toLowerCase()" : u2;rand=Math.floor(Math.random() * 101);a=rand==0 ? "arch nemesies" : rand<20 ? "enemies" : rand<30 ? "friends" : rand<65 ? "friends" : rand<75 ? "best friends" : rand<90 ? "lovers" : "soul mates";(u1=="" && u2=="") ? `๐ Aw you have no one to love ;-; don't worry, I'm here for you! ๐` :(u1 == u2 ? `๐ Try shipping two different people... ๐` :`๐ ${u1}, and ${u2} are ${a} ๐ (${rand}% compatible) ๐`))
and a few different variations to no avail. The snippet here is to long.