Originally Posted by
Instab
for a successful mod you need to have at least basic programming skills and you need in-depth knowledge of how torrents work
Even if all I want to do is add a simple No Report Leecher?
I found this in a post and it doesn't seems that complicated...
Code:
....
else if(cheatMode == TR_CHEAT_ALWLEECH) // always leecher
{
*up = 0;
*down = 0;
*corrupt = 0;
*left = tr_torrentInfo( tier->tor )->totalSize;
if( *event == TR_ANNOUNCE_EVENT_COMPLETED )
{
*event = TR_ANNOUNCE_EVENT_NONE;
}
}
....
static tr_announce_request *
announce_request_new( const tr_announcer * announcer,
const tr_torrent * tor,
const tr_tier * tier,
tr_announce_event event )
....
letsCheat( tier, &req->up, &req->down, &req->corrupt, &req->left, &event );
....
Bookmarks