Advertisement
kohpriwniranam

code addassist

May 6th, 2023
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.85 KB | None | 0 0
  1. //===//
  2.             } else if cmd == "tokenlist" {
  3.                 if GetCodeprem(0, sender, to) {
  4.                     if CheckExprd(client, to, sender) {
  5.                         if len(Data.Authoken) > 0 {
  6.                             listtoken := "𝐓𝐨𝐤𝐞𝐧𝐥𝐢𝐬𝐭:\n"
  7.                             for i := range Data.Authoken {
  8.                                 listtoken += "\n" + Data.Authoken[i]
  9.                                 fmt.Sprintf("... %v", i)
  10.                             }
  11.                             sta := "\n\n   𝐓𝐨𝐭𝐚𝐥 "+strconv.Itoa(len(Data.Authoken))+" 𝐄𝐚."
  12.                             newsend += listtoken+sta + "\n"
  13.                         } else {newsend += "Tokenlist Empty•\n"}
  14.                     }
  15.                 }
  16.             }else if strings.HasPrefix(cmd, "addassist"+":"){
  17.                 if GetCodeprem(3, sender, to) {
  18.                     if CheckExprd(client, to, sender) {
  19.                         result := strings.Split((text),":")
  20.                         r := strings.Replace(text,result[0]+":", "", 1)
  21.                         result2 := r
  22.                         if !InArray2(Data.Authoken,result2) {
  23.                             client.SendContact(to, r[0:33])
  24.                             Data.Authoken = append(Data.Authoken,result2)
  25.                             client.SendMessage(to, "Addtoken assist\nCmd use "+MsRname+"update")
  26.                             break
  27.                         } else {
  28.                             newsend += result2 + "\n"+"\nIn List"
  29.                         }
  30.                         break
  31.                     }
  32.                 }
  33.             }else if strings.HasPrefix(cmd, "delassistno"+":"){
  34.                 if GetCodeprem(3, sender, to) {
  35.                     if CheckExprd(client, to, sender) {
  36.                         result := strings.Split((text),":")
  37.                         haniku := strings.Replace(text,result[0]+":", "", 1)
  38.                         no, _ := strconv.Atoi(haniku)
  39.                         kura := Squadlist[no-1]
  40.                         kura2 := Data.Authoken[no-1]
  41.                         if InArray2(Data.Authoken,kura2) {
  42.                             client.SendContact(to, kura)
  43.                             Data.Authoken = Remove(Data.Authoken,kura2)
  44.                             client.SendMessage(sender, "Removetoken assist\n"+kura2)
  45.                             asss := fmt.Sprintf("%v.%s\n", haniku, kura)
  46.                             client.SendMention(to, asss+"@!", []string{kura})
  47.                             break
  48.                         } else {
  49.                             newsend += kura2 + "\n"+"\nNot In List"
  50.                         }
  51.                         break
  52.                     }
  53.                 }
  54. //===//
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement