Multiply by 57896044618658097711785492504343953926418782139537452191302581570759080747169
Let the point you want to multiply is G, and the multiplication constant is c. The result will be P=c*G
One way to do it is:
1. Start with the point at infinity P = (0,0) = 0*G, Q = G = 1*G, d = c
2. if d is zero return P
3. If d is odd let P = P + Q
4. Double Q: Q = 2*Q, halve d rounding towards zero: d = floor(d/2)
5. Go to step 2
I'm sorry but i don't understand, can you give me an example
I do not have the necessary bases in mathematics and you lost me with "constant is c" & d

ideally a small python script would be welcome but I'm certainly asking too much

Signed: the noob ^^