Calculation error

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

S K A A S H

Member
Jun 21, 2019
4
0
0
Skript Version : Skript 2.2
Minecraft Version: 1.8.9

Code (Skript):
every 60 minutes:
loop all players:
add 1 to {onlinezeit::%loop-player%::*}

english:
Whenever I use add 1 to xxx he does not count the number but adds it. example:

german:
Immer wenn ich add 1 to xxx benutze Rechnet er die Zahl nicht drauf sonder fügt sie hinzu. bsp:

dDmy9im.png
 
It's because you are using a list and not a variable.


Code:
every 60 minutes:
    loop all players:
        add 1 to {onlinezeit.%player%}
 
Status
Not open for further replies.