Hi :p First sorry for my english, because i'm french :p
1. Teleporter that i can customize to goto 3 diffrent spots
Into ...server\scripts\customnpc you have teleport Alb / Hib / Mid files
Just change locations and region
2. Bp Merchant with cap stat gear
For Bp Merchant sorry I don't know how does it work

Try to go to
http://www.rumandcode.com
3. NPC With Free starting gear
http://www.webstyle-studio.de/Equipment.cs
/mob create DOL.GS.Scripts.Equipement
It give Old epic / mount / weapon and cloak
I think you can modify it (about 10000 lines into the file lol)
4. figure out how to make rp x5 and bp x10
Into your ServerProperty.sql (or xml) file you have xp_rate and rp_rate :p
5. figre out how to get the right spec points for each class
Don't understand this, normally your class have automatically her spec points at each level up
6. get rr3 and lvl 5 mob (only want lvl 5 trainer b/c its a tank server and made custom tank trainers of each tank so they didnt make a healer)
You can go ...server\scripts\gameevents and you have the file named DOLTestServer.cs
At the end of the file you have a thing like this
public static void DOLTestCharacterCreation(DOLEvent e, object sender, EventArgs args)
{
CharacterEventArgs chArgs = args as CharacterEventArgs;
if (chArgs == null)
return;
//We want our new characters to start with some money
chArgs.Character.Gold = 50; // begin with 50gold
chArgs.Character.Level = 5; // start at lv5
chArgs.Character.RealmPoints = 61750; // start at RR3
chArgs.Character.BountyPoints = 100; // start with 100 bounty points
chArgs.Character.SkillSpecialtyPoints = 14; // at level 5 you have 14 skillpoints
//chArgs.Character.Strength = chArgs.Character.Strength + 20; // You can start your character (all) with more strengh or constitution ...
// since at least money loot is available we dont need start money
}
Just Add or Retire // before the chArgs.Character to activate or not the "bonus".
7. AN effect merch
Try
http://www.rumandcode.com
You should find what you want here
8. Proc merch.
Try
http://www.rumandcode.com
You should find what you want here
9. Envenom Merch
You should have this in mob.xml or mob.sql, or just download one and copy the line of an envenom merchant to your database and change his loc and region
10. RR morph merch
Try
http://www.rumandcode.com
You should find what you want here