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:
$(eval
u1="$(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.