kfritz411

Member
I see tiles set to block non GM players. Is it possible to tie Karma rating to something like that, where if Karma is above or below a certain level it would deny or grant access?

Does something like this already exist and I just missed it?
 
hmm maybe that that is possible with the Custom Region Controller? Sadly i am not home right now so i cant test but maybe it can help you!
 
Make a tile, then add the OnMoveOver method, something like this;

Code:
public override bool OnMoveOver( Mobile m )
        {

                 if ( m is PlayerMobile && m.Karma <= 5000 )   //if player has less than 5k karma we dont allow access
{
return false;
}
else 
{
return true;  //we grant access
}
            }


hope you get the idea

If you have xmlspawner installed would be even easier, make a spawner that trigger if player has X karma and move them to the location u want
 
Nice! Thanks everyone, I'll try that out. My idea is a "safe" zone for pks and blues when in PVP zones. Mainly rez spots
 
don't want to "disable" PVP really, just want to stop low karma from entering high karma area and vice versa
 
if using region controller make sure to add a area of at least 25x25 tile unless its been fixed it will throw a error and reset all controllers back if it don't delete them all
 

Active Shards

Donations

Total amount
$0.00
Goal
$1,000.00
Back