Gaiaonline "Tip"
What do you guys think of it?
If you haven't seen it its in the forums.
It's like rep but when you tip them you give them 25 gold.
If you haven't seen it its in the forums.
It's like rep but when you tip them you give them 25 gold.


TEMPTii wrote:Ugh, I just saw. The tip takes from one's account. It could be used as a sapping method I guess. Login to a list of active accounts (with proxy) and tip your posts a lot in extremely small increments. I bet boob could make a shit-ton.
Taz wrote:To be honest doesn't sound like a good program sounds very slow.
TEMPTii wrote:Multithreading. And it could be profittable if you have like 50 accounts.
50 x 25 = 1,250
1,250 x 6 tpm = 7,500
If I can get a good one working you could pretty much sap about 8,000 gold from a list of 50 accounts per 1-2 minutes. This would also help for boob's account list...
In retrospect, this is a very shrewd farming method that I think I'll look into. If I could combine my Arena Voter with a refresher and DC grabber (which I have) and maybe an autoposter (but the captcha's a bitch) and then put in a sapper, this could be the new mulefarm.

Bman wrote:I already have a tip bot done.
Its not very good, but it works alright with my multithreaded arena voter...
Vote until 25 gold : Tip.
Account getting gold makes new post.
Vote until 25gold : tip.
Rinse repeat
Imports System.IO
Public Class Form1
Private Sub Threadwork
Dim i as integer
For i = 0 to 100
msgbox(i)
next i
End Sub
Private Sub Button1_Click() Handles button1.click
Dim thread1 As Thread
thread1 = New Thread(AddressOf Me.BackWorker)
t.Start()
End Sub
End ClassTEMPTii wrote:Creates a private sub called threadwork. Threadwork does a specific thing on its own thread.
Pressing button1 will create a new thread. This thread will call Threadwork (should have been addressof.threadwork) and initiate it on a seperate thread each time you press the button. Test out the code, you'll see.
h hi bman ^^