1 2 3 4 5 6 7 8 9 10 | // ***** Completed Professions System by Oxxy (C) 2015, XXRO ***** \\ function script Get_ProfessionS { .@Profession$ = getarg(0); .@Prof_Level = getarg(1); .@Prof_Skill = getarg(2); if(.@Profession$ != "Mining" || .@Profession$ != "Herbalism" || .@Profession != "Cooking") return "Unknown profession"; close; } |