Page 1 of 1
Account BountyPoints
PostPosted: Sat Apr 27, 2013 4:29 pm
by R4z0
Hello all!
I want my server to share BPs in the account.
There are any solution yet? ,
have i to implement it?, in that case, where can i control when a bountypoint event start?
Thanks!
Re: Account BountyPoints
PostPosted: Sun Apr 28, 2013 8:09 am
by Graveen
You have to implement it, this is not an existing feature.
Re: Account BountyPoints
PostPosted: Mon Apr 29, 2013 4:22 am
by HunabKu
Hi. i think the best you can do is to create an acount table entry in database, and modify the bountypoints gain files
Re: Account BountyPoints
PostPosted: Mon Apr 29, 2013 9:34 am
by Graveen
On my side, i think the easiest is to create a bounty-transfert NPC. Thus, you have only to take care of the transfer.
Re: Account BountyPoints
PostPosted: Wed May 01, 2013 5:11 am
by HunabKu
Sure

Re: Account BountyPoints
PostPosted: Wed May 01, 2013 11:46 am
by Tarragon22
Try with this one man, you can set the NPC from here:
#region configuration flags
/// <summary>
/// Enable/Disable transfer whole realmpoints/realmlevel
/// </summary>
protected readonly bool TRANSFER_REALM = false;
/// <summary>
/// Enable/Disable transfer whole bountypoints
/// </summary>
protected readonly bool TRANSFER_BOUNTY = true;
/// <summary>
/// Enable/Disable transfer whole money
/// </summary>
protected readonly bool TRANSFER_MONEY = false;
/// <summary>
/// Allow/Disallow transfer crossrealm
/// </summary>
protected readonly bool TRANSFER_CROSSREALM = true;
/// <summary>
/// Allow/Disallow transfer to another account
/// </summary>
protected readonly bool TRANSFER_OTHERACCOUNT = false;
/// <summary>
/// Allow/Disallow transfer to logged in chars on another account
/// ATTENTION: its not tested!!!
/// </summary>
protected readonly bool TRANSFER_LOGGEDIN = false;
Tarragon