A lot of servers use a script like this in Control-NPC.
In Control-NPC:
PHP Code:
function onActionPlayerOnline() {
// Array of weapons to add to the player.
temp.weps = {
"-System", "OtherWeapon", "Example"
};
// Loops through each weapon in the array and adds it to the player.
for (temp.wep: temp.weps) {
player.addweapon(temp.wep);
}
}