- Initiateur de la discussion
crannser69
Geek
- Messages
- 68
- Score réaction
- -1
- Points
- 85
function newOrg( pl, cmd, arg )
if !pl:hasOrg() then
if org.checkName( arg[1] ) then
if pl:canAfford( Organisations_Config.createPrice ) then
if ply:GetUserGroup("user") then
org.new( arg[1] )
org.newMember( pl, org.getId( arg[1] ), "o" )
sendNotify( pl, Organisations_lang.neworg, "NOTIFY_HINT" )
sendNotify( pl, Organisations_lang.neworg1, "NOTIFY_HINT" )
pl:addMoney(-Organisations_Config.createPrice)
else
sendNotify( pl, Organisations_lang.vip, "NOTIFY_ERROR" )
sendNotify( pl, Organisations_lang.vip1, "NOTIFY_ERROR" )
end
else
sendNotify( pl, Organisations_lang.cantafford, "NOTIFY_ERROR" )
end
else
sendNotify( pl, Organisations_lang.inuse, "NOTIFY_ERROR" )
end
else
sendNotify( pl, Organisations_lang.alreadyin, "NOTIFY_ERROR" )
sendNotify( pl, Organisations_lang.alreadyin1, "NOTIFY_ERROR" )
end
end
concommand.Add("org_neworg", newOrg)
En rouge c'est ce que j'ai rajouté et qui ne fonctionne pas, j'ai testé toute forme de syntax différentes et pleins d'erreur différentes aussi donc si quelqu'un connais la vrai syntax s'il peut m'aider !
if !pl:hasOrg() then
if org.checkName( arg[1] ) then
if pl:canAfford( Organisations_Config.createPrice ) then
if ply:GetUserGroup("user") then
org.new( arg[1] )
org.newMember( pl, org.getId( arg[1] ), "o" )
sendNotify( pl, Organisations_lang.neworg, "NOTIFY_HINT" )
sendNotify( pl, Organisations_lang.neworg1, "NOTIFY_HINT" )
pl:addMoney(-Organisations_Config.createPrice)
else
sendNotify( pl, Organisations_lang.vip, "NOTIFY_ERROR" )
sendNotify( pl, Organisations_lang.vip1, "NOTIFY_ERROR" )
end
else
sendNotify( pl, Organisations_lang.cantafford, "NOTIFY_ERROR" )
end
else
sendNotify( pl, Organisations_lang.inuse, "NOTIFY_ERROR" )
end
else
sendNotify( pl, Organisations_lang.alreadyin, "NOTIFY_ERROR" )
sendNotify( pl, Organisations_lang.alreadyin1, "NOTIFY_ERROR" )
end
end
concommand.Add("org_neworg", newOrg)
En rouge c'est ce que j'ai rajouté et qui ne fonctionne pas, j'ai testé toute forme de syntax différentes et pleins d'erreur différentes aussi donc si quelqu'un connais la vrai syntax s'il peut m'aider !