Member count not going down
#1

Basically, I have a dini based group system that when people join the group or are invited there member count goes up and it works fine but for some reason if people leave it never goes down

The fallowing code does not work
Код:
numberz = dini_Int(file, "Members");
     numberz--;
     dini_IntSet(file, "Members", numberz);
The fallowing code works
Код:
numberz = dini_Int(file, "Members");
  numberz++;
  dini_IntSet(file, "Members", numberz);
I don't see what the problem is and could use some help
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)