Hey, I've been banging my head against a brick wall for a while now. I'm writing a script to sort points and cannot get the greater than sign to work properly in an if statement. Code below.

Code:
;VARIABLES LIST FOR !SORT
;%a = Points Output Local
;%b = End Trigger For Checking For .
;%c = Increase For $right And $left
;%d = Name Output Local
;%e = Points Output Global
;%f = Name Output Global
;%x = Loop

on *:TEXT:!sort*:#: {
  if (!$2) {
    var %x $lines(exp.txt)
    while (%x) {
      var %e 0
      var %c 1
      var %b 0
      while (%b != 1) {
        var %a $right($read(exp.txt,%x),%c))
        inc %c
        if (. isin $right($read(exp.txt,%x),%c)) { var %b 1 }
      }
      var %c 1
      var %b 0
      while (%b != 1) {
        var %d $left($read(exp.txt,%x),%c))
        inc %c
        if (. isin $left($read(exp.txt,%x),%c)) { var %b 1 }
      }
      if ( %a > %e) {
        var %e %a
        var %f %d
      }
      msg # %e %a
      dec %x
    }
    msg # First place is %f with a score of %e $+ .
  }
  ;  elseif ($2 >= 1) {
  ;    var %x $lines(exp.txt)
  ;    while (%x) {
  ;      var %c 1
  ;      var %b 0
  ;      while (%b != 1) {
  ;        var %a $right($read(exp.txt,%x),%c))
  ;        inc %c
  ;        if (. isin $right($read(exp.txt,%x),%c)) { var %b 1 }
  ;      }
  ;      var %c 1
  ;      var %b 0
  ;      while (%b != 1) {
  ;        var %d $left($read(exp.txt,%x),%c))
  ;        inc %c
  ;        if (. isin $left($read(exp.txt,%x),%c)) { var %b 1 }
  ;      }
  ;      dec %x
  ;    }
  ;    msg # First place is %f with a score of %e $+ .
  ;  }
}


on *:TEXT:*:#: {
  unset %exp.*
  ;if ($($+(%,flood.,$nick),2)) { return }
  ;set -u30 %flood. $+ $nick On
  var %x $lines(exp.txt)
  while (%x) {
    if ($nick isin $read(exp.txt,%x)) {
      inc %exp.search
      set %exp.return $addtok(%exp.return,%x,32)
    }
    dec %x
  }
  if (!%exp.search) { .write exp.txt $nick $+ . $+ 1 }
  elseif (%exp.search == 1) {
    var %a  $read(exp.txt,%exp.return)
    var %b $remove(%a,$nick $+ .)
    var %b $calc(%b + 1)
    .write -dl $+ %exp.return exp.txt
    .write exp.txt $nick $+ . $+ %b
  }
  unset %exp.*
}


The short section in question is as follows.

Code:
      if ( %a > %e) {
        var %e %a
        var %f %d
      }


The test exp.txt file I'm using is as follows.

Code:
jaxxet2.1
mackverick20.7
wolfpup118.31
nightcourtdan8.19


My output, however, reads as this.

Code:
bot: 19 19
bot: 31 31
bot: 7 7
bot: 1 1
bot: First place is jaxxet2 with a score of 1.


If I change around the sign to be if ( %a < %e ) then I get the following.

Code:
bot: 0 0
bot: 0 0
bot: 0 0
bot: 0 0
bot: First place is with a score of 0.


This seems to say it isnt just blindly jumping through it all. I just cannot at all figure out why this is not working for the life of me. Can any of you see something I did wrong by any chance?

EDIT: Also, as an aside, would $gettok work as a replacement for the $right and $left system I have to find a word? I'm still new to all this and it seems like it may be a good simple replacement for it.

Last edited by wolfpup118; 12/01/16 07:17 AM.