I rely try but cant get this to work.

Hi i need help i like to setup, so that my clients trafics goes on the pptp connection (vpn.anonine.net)
and the my servers go direct on my isp to internet.
and this is not a must but connect my mikrotik 750G to my friends dd-wrt (Router B) EoIP.

Router A is my mikrotik.
Connection Types:

ISP - DHCP
IP Address 82.196..
Subnet Mask 255.255.254.0
Gateway 82.196..
DNS 2 213.80.98.2
DNS 3 213.80.101.3

Lan -DHCP
IP Address 192.168.88.0/24
Subnet Mask 255.255.255.0
Gateway 192.168.88.1
DNS1 8.8.8.8
DNS2 8.8.4.4

PPTP-Client Anonine
vpn.anonine.net

EoIP is Mikrotik proprietary protocol and it will not work on dd-wrt.

About the rest of the problem, you can simply set up policy routing.
Read articles on how to set up policy routing in the wiki:
http://wiki.mikrotik.com/wiki/User/Routing

probobly, a good awnser but i still cant get rigth information so i can do this by myself.

fo example where cani find a guid to set up an pptp-client an rout trafic on to it.
is not that im dumb it´s yest that its a verry complicated router, and complicated UI
if you are new to the routeros.

http://wiki.mikrotik.com/wiki/Manual:Interface/PPTP#PPTP_Client
That explains, with details, how to set up a PPTP client.

A PPTP tunnel is just another interface with an IP address on the other end. If you want to route traffic across the tunnel just add a route in “/ip route” that uses the server’s tunnel IP as the next hop. Make sure the server has a return route to the IP address of the nodes routing traffic across the tunnel. Since PPTP is GRE with a control channel you can also run routing protocols across the VPN if you wish.

If you point a default route via the tunnel you have to be careful to have a more specific route to the server’s public IP address (the IP the tunnel is established to) via your normal WAN interfaces since such a route would be recursive.

and there im lost do you have a sample code?

It’s just a route.

If the PPTP server tunnel ip is 1.1.1.1 and you want to reach network 10.0.0.0/8 behind it insert a route:

/ip route add dst-address=10.0.0.0/8 gateway=1.1.1.1

If you need to look up policy routing search the wiki and the forums. Examples for policy routing get posted on a daily basis.