Hi i have make a mistake
The script what i have post yesterday is notworking
; Visitor Counter
alias mta.join {
set %visits ($readini("MTAStats.ini",visits,$mta.name( $1 , $2 )) + 1)
writeini -n "MTAStats.ini" visits $mta.name( $1 , $2 ) %visits
mta.say $1 Welcome $mta.name($1,$2) this is your ($readini("MTAstats.ini",visits,$mta.name( $1 , $2 ))) visit here.
}
Here is the script what is working
; Visitor Counter
alias mta.join {
set %visits $calc($readini("MTAStats.ini",visits,$mta.name($1,$2)) + 1)
writeini -n "MTAStats.ini" visits $mta.name($1,$2) %visits
mta.say $1 Welcome $mta.name($1,$2) this is your $calc($readini("MTAstats.ini",visits,$mta.name( $1 , $2 ))) visit here.
}
Grz Michael