OK, but unless you understand it you're going to have a hard time troubleshooting it when you have an issue.
all i need to limit every user with 1mb also 512kb
What does that mean? I'm assuming that means 1Mbps download and 512Kbps. I might be wrong.
Anyway, straight from
http://wiki.mikrotik.com/wiki/Manual:Qu ... r_of_Users
/ip firewall mangle
add chain=prerouting src-address=192.168.88.0/23 action=mark-packet new-packet-mark=upload passthrough=no
add chain=postrouting dst-address=192.168.88.0/23 action=mark-packet new-packet-mark=download passthrough=no
/queue type
add name="download" kind=pcq pcq-rate=1000000 pcq-classifier=dst-address
add name="upload" kind=pcq pcq-rate=512000 pcq-classifier=src-address
/queue tree
add parent=global-out queue=download packet-mark=download
add parent=global-in queue=upload packet-mark=upload