Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions courses/course_IPSF
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
COURSE = {}
COURSE.code = "IPSF"
COURSE.name = "Introduction au Patrouille en surface"
COURSE.icon = "icon16/user.png"
COURSE.description = "Pour les patrouilles en surface"
COURSE.requirement = {}
COURSE.callback = function(client)
local character = client:GetCharacter()
if not character then return false end
if not (client:Team() == FACTION_SECURITY) then return false end
if character:GetRank() >7 then return true end
if character:HasCourse("HFORM") then return true end
return false
end


return COURSE