Problème de textures des skins et emplois en DarkRp

  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
Bonjour ,

J'ai essayé d'ajouter des jobs(emplois)sur Gmod en DarkRp puis j'ai fais un redémarrage puis cela me fait sa :

Puis les emplois :

La config des Jobs :

Jobs :
--[[---------------------------------------------------------------------------
DarkRP custom jobs
---------------------------------------------------------------------------

This file contains your custom jobs.
This file should also contain jobs from DarkRP that you edited.

Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
Once you've done that, copy and paste the job to this file and edit it.

The default jobs can be found here:
https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua

For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields


Add jobs under the following line:
---------------------------------------------------------------------------]]
TEAM_TUEURENSERIE = DarkRP.createJob("Tueur en Serie", {
color = Color(232, 17, 17, 255),
model = {"models/player/gman_high.mdl"},
description = [[Tue des personnes ! Mou ah Ah Ah]],
weapons = {"weapon_mac10"},
command = "Tueurenserie",
max = 10,
salary = 100,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Gansters",
})

TEAM_BANQUIER = DarkRP.createJob("Banquier", {
color = Color(50, 48, 48, 255),
model = {"models/player/Group01/male_04.mdl"},
description = [[Occupe toi de la tune !]],
weapons = {"weapon_mp5"},
command = "Banquier",
max = 5,
salary = 150,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_MEDECIN = DarkRP.createJob("Medecin", {
color = Color(31, 163, 84, 255),
model = {"models/player/Group03m/male_01.mdl", "models/player/Group03m/.mdl", "models/player/Group03m/male_03.mdl", "models/player/Group03m/male_04.mdl", "models/player/Group03m/male_05.mdl", "models/player/Group03m/male_06.mdl", "models/player/Group03m/male_07.mdl"},
description = [[Soigne vite les gens !]],
weapons = {"weapon_medikit"},
command = "Medecin",
max = 7,
salary = 120,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_VOLEUR = DarkRP.createJob("Voleur", {
color = Color(0, 0, 0, 255),
model = {"models/player/odessa.mdl"},
description = [[Vole des objets]],
weapons = {},
command = "Voleur",
max = 5,
salary = 30,
admin = 0,
vote = true,
hasLicense = false,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Other",
})

Jobrelated :

-- People often copy jobs. When they do, the GM table does not exist anymore.
-- This line makes the job code work both inside and outside of gamemode files.
-- You should not copy this line into your code.
local GAMEMODE = GAMEMODE or GM

TEAM_CITIZEN = DarkRP.createJob("Citizen", {
color = Color(20, 150, 20, 255),
model = {
"models/player/Group01/Female_01.mdl",
"models/player/Group01/Female_02.mdl",
"models/player/Group01/Female_03.mdl",
"models/player/Group01/Female_04.mdl",
"models/player/Group01/Female_06.mdl",
"models/player/group01/male_01.mdl",
"models/player/Group01/Male_02.mdl",
"models/player/Group01/male_03.mdl",
"models/player/Group01/Male_04.mdl",
"models/player/Group01/Male_05.mdl",
"models/player/Group01/Male_06.mdl",
"models/player/Group01/Male_07.mdl",
"models/player/Group01/Male_08.mdl",
"models/player/Group01/Male_09.mdl"},
description = [[Tu est un Citoyen.]],
weapons = {},
command = "citizen",
max = 10,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
category = "Citizen",
})

TEAM_TUEURENSERIE = DarkRP.createJob("Tueur en erie", {
color = Color(232, 17, 17, 255),
model = {"models/player/gman_high.mdl"},
description = [[Tue des personnes ! Mou ah Ah Ah]],
weapons = {"weapon_mac10"},
command = "Tueurenserie",
max = 10,
salary = 100,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Gansters",
})

TEAM_BANQUIER = DarkRP.createJob("Banquier", {
color = Color(50, 48, 48, 255),
model = {"models/player/Group01/male_04.mdl"},
description = [[Occupe toi de la tune !]],
weapons = {"weapon_mp5"},
command = "Banquier",
max = 5,
salary = 150,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_MEDECIN = DarkRP.createJob("Medecin", {
color = Color(31, 163, 84, 255),
model = {"models/player/Group03m/male_01.mdl","models/player/Group03m/.mdl", "models/player/Group03m/male_03.mdl","models/player/Group03m/male_04.mdl", "models/player/Group03m/male_05.mdl", "models/player/Group03m/male_06.mdl", "models/player/Group03m/male_07.mdl"},
description = [[Soigne vite les gens !]],
weapons = {"weapon_medikit"},
command = "Medecin",
max = 7,
salary = 120,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_VOLEUR = DarkRP.createJob("VOLEUR", {
color = Color(0, 0, 0, 255),
model = {"models/player/odessa.mdl"},
description = [[Vole des objets]],
weapons = {},
command = "Voleur",
max = 5,
salary = 30,
admin = 0,
vote = true,
hasLicense = false,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Other",
})

end
-- Compatibility for when default teams are disabled
TEAM_CITIZEN = TEAM_CITIZEN or -1
TEAM_POLICE = TEAM_POLICE or -1
TEAM_GANG = TEAM_GANG or -1
TEAM_MOB = TEAM_MOB or -1
TEAM_GUN = TEAM_GUN or -1
TEAM_MEDIC = TEAM_MEDIC or -1
TEAM_CHIEF = TEAM_CHIEF or -1
TEAM_MAYOR = TEAM_MAYOR or -1
TEAM_HOBO = TEAM_HOBO or -1



AddDoorGroup("Cops and Mayor only", TEAM_CHIEF, TEAM_POLICE, TEAM_MAYOR)
AddDoorGroup("Gundealer only", TEAM_GUN)



DarkRP.createAgenda("Gangster's agenda", TEAM_MOB, {TEAM_GANG})
DarkRP.createAgenda("Police agenda", {TEAM_MAYOR, TEAM_CHIEF}, {TEAM_POLICE})



DarkRP.createGroupChat(function(ply) return ply:isCP() end)
DarkRP.createGroupChat(TEAM_MOB, TEAM_GANG)
DarkRP.createGroupChat(function(listener, ply) return not ply or ply:Team() == listener:Team() end)


GAMEMODE.DefaultTeam = TEAM_CITIZEN


GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}


DarkRP.addHitmanTeam(TEAM_MOB)


DarkRP.createDemoteGroup("Cops", {TEAM_POLICE, TEAM_CHIEF})
DarkRP.createDemoteGroup("Gangsters", {TEAM_GANG, TEAM_MOB})


DarkRP.createCategory{
name = "Citizen",
categorises = "jobs",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 100,
}

DarkRP.createCategory{
name = "CivilProtection",
categorises = "jobs",
startExpanded = true,
color = Color(25, 25, 170, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}

DarkRP.createCategory{
name = "Gangsters",
categorises = "jobs",
startExpanded = true,
color = Color(75, 75, 75, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}

DarkRP.createCategory{
name = "Other",
categorises = "jobs",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}
 
Pure Code

Pure Code

Geek
Messages
180
Score réaction
10
Points
85
ça ne sert à rien de faire des doublons
 
  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
Bein je sais mais on ne me reponds plus
 
Willy

Willy

Bambi
Messages
21
Score réaction
0
Points
40
sais bizzard que sa te fait sa car moi sa fonction a 100% si ta toujour pas résolu le probleme contact moi (skype wiwi97231)
 
O

ozyria

Geek
Messages
50
Score réaction
2
Points
90
blowjulien à dit:
Bonjour ,

J'ai essayé d'ajouter des jobs(emplois)sur Gmod en DarkRp puis j'ai fais un redémarrage puis cela me fait sa :

Puis les emplois :

La config des Jobs :

Jobs :
--[[---------------------------------------------------------------------------
DarkRP custom jobs
---------------------------------------------------------------------------

This file contains your custom jobs.
This file should also contain jobs from DarkRP that you edited.

Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
Once you've done that, copy and paste the job to this file and edit it.

The default jobs can be found here:
https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua

For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields


Add jobs under the following line:
---------------------------------------------------------------------------]]
TEAM_TUEURENSERIE = DarkRP.createJob("Tueur en Serie", {
color = Color(232, 17, 17, 255),
model = {"models/player/gman_high.mdl"},
description = [[Tue des personnes ! Mou ah Ah Ah]],
weapons = {"weapon_mac10"},
command = "Tueurenserie",
max = 10,
salary = 100,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Gansters",
})

TEAM_BANQUIER = DarkRP.createJob("Banquier", {
color = Color(50, 48, 48, 255),
model = {"models/player/Group01/male_04.mdl"},
description = [[Occupe toi de la tune !]],
weapons = {"weapon_mp5"},
command = "Banquier",
max = 5,
salary = 150,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_MEDECIN = DarkRP.createJob("Medecin", {
color = Color(31, 163, 84, 255),
model = {"models/player/Group03m/male_01.mdl", "models/player/Group03m/.mdl", "models/player/Group03m/male_03.mdl", "models/player/Group03m/male_04.mdl", "models/player/Group03m/male_05.mdl", "models/player/Group03m/male_06.mdl", "models/player/Group03m/male_07.mdl"},
description = [[Soigne vite les gens !]],
weapons = {"weapon_medikit"},
command = "Medecin",
max = 7,
salary = 120,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_VOLEUR = DarkRP.createJob("Voleur", {
color = Color(0, 0, 0, 255),
model = {"models/player/odessa.mdl"},
description = [[Vole des objets]],
weapons = {},
command = "Voleur",
max = 5,
salary = 30,
admin = 0,
vote = true,
hasLicense = false,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Other",
})

Jobrelated :

-- People often copy jobs. When they do, the GM table does not exist anymore.
-- This line makes the job code work both inside and outside of gamemode files.
-- You should not copy this line into your code.
local GAMEMODE = GAMEMODE or GM

TEAM_CITIZEN = DarkRP.createJob("Citizen", {
color = Color(20, 150, 20, 255),
model = {
"models/player/Group01/Female_01.mdl",
"models/player/Group01/Female_02.mdl",
"models/player/Group01/Female_03.mdl",
"models/player/Group01/Female_04.mdl",
"models/player/Group01/Female_06.mdl",
"models/player/group01/male_01.mdl",
"models/player/Group01/Male_02.mdl",
"models/player/Group01/male_03.mdl",
"models/player/Group01/Male_04.mdl",
"models/player/Group01/Male_05.mdl",
"models/player/Group01/Male_06.mdl",
"models/player/Group01/Male_07.mdl",
"models/player/Group01/Male_08.mdl",
"models/player/Group01/Male_09.mdl"},
description = [[Tu est un Citoyen.]],
weapons = {},
command = "citizen",
max = 10,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
candemote = false,
category = "Citizen",
})

TEAM_TUEURENSERIE = DarkRP.createJob("Tueur en erie", {
color = Color(232, 17, 17, 255),
model = {"models/player/gman_high.mdl"},
description = [[Tue des personnes ! Mou ah Ah Ah]],
weapons = {"weapon_mac10"},
command = "Tueurenserie",
max = 10,
salary = 100,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Gansters",
})

TEAM_BANQUIER = DarkRP.createJob("Banquier", {
color = Color(50, 48, 48, 255),
model = {"models/player/Group01/male_04.mdl"},
description = [[Occupe toi de la tune !]],
weapons = {"weapon_mp5"},
command = "Banquier",
max = 5,
salary = 150,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_MEDECIN = DarkRP.createJob("Medecin", {
color = Color(31, 163, 84, 255),
model = {"models/player/Group03m/male_01.mdl","models/player/Group03m/.mdl", "models/player/Group03m/male_03.mdl","models/player/Group03m/male_04.mdl", "models/player/Group03m/male_05.mdl", "models/player/Group03m/male_06.mdl", "models/player/Group03m/male_07.mdl"},
description = [[Soigne vite les gens !]],
weapons = {"weapon_medikit"},
command = "Medecin",
max = 7,
salary = 120,
admin = 0,
vote = true,
hasLicense = true,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizen",
})

TEAM_VOLEUR = DarkRP.createJob("VOLEUR", {
color = Color(0, 0, 0, 255),
model = {"models/player/odessa.mdl"},
description = [[Vole des objets]],
weapons = {},
command = "Voleur",
max = 5,
salary = 30,
admin = 0,
vote = true,
hasLicense = false,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Other",
})

end
-- Compatibility for when default teams are disabled
TEAM_CITIZEN = TEAM_CITIZEN or -1
TEAM_POLICE = TEAM_POLICE or -1
TEAM_GANG = TEAM_GANG or -1
TEAM_MOB = TEAM_MOB or -1
TEAM_GUN = TEAM_GUN or -1
TEAM_MEDIC = TEAM_MEDIC or -1
TEAM_CHIEF = TEAM_CHIEF or -1
TEAM_MAYOR = TEAM_MAYOR or -1
TEAM_HOBO = TEAM_HOBO or -1



AddDoorGroup("Cops and Mayor only", TEAM_CHIEF, TEAM_POLICE, TEAM_MAYOR)
AddDoorGroup("Gundealer only", TEAM_GUN)



DarkRP.createAgenda("Gangster's agenda", TEAM_MOB, {TEAM_GANG})
DarkRP.createAgenda("Police agenda", {TEAM_MAYOR, TEAM_CHIEF}, {TEAM_POLICE})



DarkRP.createGroupChat(function(ply) return ply:isCP() end)
DarkRP.createGroupChat(TEAM_MOB, TEAM_GANG)
DarkRP.createGroupChat(function(listener, ply) return not ply or ply:Team() == listener:Team() end)


GAMEMODE.DefaultTeam = TEAM_CITIZEN


GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}


DarkRP.addHitmanTeam(TEAM_MOB)


DarkRP.createDemoteGroup("Cops", {TEAM_POLICE, TEAM_CHIEF})
DarkRP.createDemoteGroup("Gangsters", {TEAM_GANG, TEAM_MOB})


DarkRP.createCategory{
name = "Citizen",
categorises = "jobs",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 100,
}

DarkRP.createCategory{
name = "CivilProtection",
categorises = "jobs",
startExpanded = true,
color = Color(25, 25, 170, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}

DarkRP.createCategory{
name = "Gangsters",
categorises = "jobs",
startExpanded = true,
color = Color(75, 75, 75, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}

DarkRP.createCategory{
name = "Other",
categorises = "jobs",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}
Bonjour des début de commande son en maj il ne faut pas
command = "Voleur", faux
command = "voleur", vrais
 
O

ozyria

Geek
Messages
50
Score réaction
2
Points
90
Willy à dit:
sais bizzard que sa te fait sa car moi sa fonction a 100% si ta toujour pas résolu le probleme contact moi (skype wiwi97231)
je pense que j'ais trouve :)
 
  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
Sa ne marche toujours pas ;(
 
Z

ZYGEULLL

Geek suprême
Messages
263
Score réaction
18
Points
110
Tu a des erreurs lua? si oui met les.
 
  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
Oui :
[ERROR] gamemodes/darkrp/gamemode/modules/base/sv_gamemode_functions.lua:526: attempt to index a nil value
1. initPlayer - gamemodes/darkrp/gamemode/modules/base/sv_gamemode_functions.lua:526
2. unknown - gamemodes/darkrp/gamemode/modules/base/sv_gamemode_functions.lua:571
[ERROR] gamemodes/darkrp/gamemode/modules/base/sv_gamemode_functions.lua:526: attempt to index a nil value
1. initPlayer - gamemodes/darkrp/gamemode/modules/base/sv_gamemode_functions.lua:526
2. unknown - gamemodes/darkrp/gamemode/modules/base/sv_gamemode_functions.lua:571

Lua Error Couldn't include file 'rphone_ems/server/sv_ems.lua' (File not found) (@addons/rphone_ems/lua/autorun/sh_rphone_ems_load.lua (line 20))
Couldn't include file 'rphone_ems/server/sv_ems.lua' (File not found) (@addons/rphone_ems/lua/autorun/sh_rphone_ems_load.lua (line 20))
 
  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
[[Photon] Unofficial Car Pack] lua/autorun/peel_p50.lua:77: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/peel_p50.lua:77
[[Photon] Unofficial Car Pack] lua/autorun/peel_p50.lua:77: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/peel_p50.lua:77
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/porsche_tricyclepho.lua:39: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/porsche_tricyclepho.lua:39
[[Photon] Unofficial Car Pack] lua/autorun/porsche_tricyclepho.lua:39: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/porsche_tricyclepho.lua:39
02/08/2016 17:28:38: server_cvar "sensor_debugragdoll" "0"
02/08/2016 17:28:38: server_cvar "sensor_stretchragdoll" "0"
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_1957belaircop.lua:109: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_1957belaircop.lua:109
[[Photon] Unofficial Car Pack] lua/autorun/sgm_1957belaircop.lua:109: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_1957belaircop.lua:109
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcop.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcop.lua:165
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcop.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcop.lua:165
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcopbnb.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcopbnb.lua:165
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcopbnb.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcopbnb.lua:165
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcopuc.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcopuc.lua:165
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcopuc.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcopuc.lua:165
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcopucbnb.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcopucbnb.lua:165
[[Photon] Unofficial Car Pack] lua/autorun/sgm_2011fordcvcopucbnb.lua:165: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_2011fordcvcopucbnb.lua:165
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_ambulance.lua:148: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_ambulance.lua:148
[[Photon] Unofficial Car Pack] lua/autorun/sgm_ambulance.lua:148: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_ambulance.lua:148
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_dodgecharger2015cop.lua:241: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_dodgecharger2015cop.lua:241
[[Photon] Unofficial Car Pack] lua/autorun/sgm_dodgecharger2015cop.lua:241: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_dodgecharger2015cop.lua:241
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_firetruck.lua:111: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_firetruck.lua:111
[[Photon] Unofficial Car Pack] lua/autorun/sgm_firetruck.lua:111: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_firetruck.lua:111
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/sgm_ratrodcop.lua:102: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_ratrodcop.lua:102
[[Photon] Unofficial Car Pack] lua/autorun/sgm_ratrodcop.lua:102: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/sgm_ratrodcop.lua:102
02/08/2016 17:28:38: Lua Error
[2012 Lamborghini Aventador (New)] lua/autorun/speedometer_aventador_cop_sgm.lua:1: attempt to index global 'surface' (a nil value)
1. unknown - lua/autorun/speedometer_aventador_cop_sgm.lua:1
[2012 Lamborghini Aventador (New)] lua/autorun/speedometer_aventador_cop_sgm.lua:1: attempt to index global 'surface' (a nil value)
1. unknown - lua/autorun/speedometer_aventador_cop_sgm.lua:1
02/08/2016 17:28:38: Lua Error
[2012 Lamborghini Aventador (New)] lua/autorun/speedometer_aventador_sgm.lua:1: attempt to index global 'surface' (a nil value)
1. unknown - lua/autorun/speedometer_aventador_sgm.lua:1
[2012 Lamborghini Aventador (New)] lua/autorun/speedometer_aventador_sgm.lua:1: attempt to index global 'surface' (a nil value)
1. unknown - lua/autorun/speedometer_aventador_sgm.lua:1
02/08/2016 17:28:38: Lua Error
 
  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
[[Photon] Unofficial Car Pack] lua/autorun/st_3500ram_towpho.lua:146: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/st_3500ram_towpho.lua:146
[[Photon] Unofficial Car Pack] lua/autorun/st_3500ram_towpho.lua:146: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/st_3500ram_towpho.lua:146
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/st_dodgecharger2015cop.lua:241: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/st_dodgecharger2015cop.lua:241
[[Photon] Unofficial Car Pack] lua/autorun/st_dodgecharger2015cop.lua:241: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/st_dodgecharger2015cop.lua:241
KoZ's Food Mod has been initialized.02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/swat_vanpho.lua:123: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/swat_vanpho.lua:123
[[Photon] Unofficial Car Pack] lua/autorun/swat_vanpho.lua:123: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/swat_vanpho.lua:123
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/talon_h2ambulancepho.lua:83: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/talon_h2ambulancepho.lua:83
[[Photon] Unofficial Car Pack] lua/autorun/talon_h2ambulancepho.lua:83: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/talon_h2ambulancepho.lua:83
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_blazerfire.lua:119: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_blazerfire.lua:119
[[Photon] Unofficial Car Pack] lua/autorun/tdm_blazerfire.lua:119: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_blazerfire.lua:119
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_blazerpolice.lua:119: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_blazerpolice.lua:119
[[Photon] Unofficial Car Pack] lua/autorun/tdm_blazerpolice.lua:119: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_blazerpolice.lua:119
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_bmwm3police.lua:139: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_bmwm3police.lua:139
[[Photon] Unofficial Car Pack] lua/autorun/tdm_bmwm3police.lua:139: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_bmwm3police.lua:139
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgecharger2012cop.lua:127: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgecharger2012cop.lua:127
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgecharger2012cop.lua:127: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgecharger2012cop.lua:127
02/08/2016 17:28:38: Lua Error
[[Photon] 2012 Dodge Charger Gendarmerie] lua/autorun/tdm_dodgecharger2012gendarm.lua:127: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgecharger2012gendarm.lua:127
[[Photon] 2012 Dodge Charger Gendarmerie] lua/autorun/tdm_dodgecharger2012gendarm.lua:127: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgecharger2012gendarm.lua:127
02/08/2016 17:28:38: Lua Error
[[Photon] 2012 Dodge Charger Police Nationale] lua/autorun/tdm_dodgecharger2012pn.lua:127: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgecharger2012pn.lua:127
[[Photon] 2012 Dodge Charger Police Nationale] lua/autorun/tdm_dodgecharger2012pn.lua:127: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgecharger2012pn.lua:127
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgechargersherif.lua:141: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgechargersherif.lua:141
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgechargersherif.lua:141: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgechargersherif.lua:141
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgechargersherifrnb.lua:141: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgechargersherifrnb.lua:141
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgechargersherifrnb.lua:141: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgechargersherifrnb.lua:141
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgechargerunmark.lua:141: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgechargerunmark.lua:141
[[Photon] Unofficial Car Pack] lua/autorun/tdm_dodgechargerunmark.lua:141: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_dodgechargerunmark.lua:141
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_esculadesherif.lua:166: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_esculadesherif.lua:166
[[Photon] Unofficial Car Pack] lua/autorun/tdm_esculadesherif.lua:166: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_esculadesherif.lua:166
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_esculadesherifrnb.lua:166: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_esculadesherifrnb.lua:166
[[Photon] Unofficial Car Pack] lua/autorun/tdm_esculadesherifrnb.lua:166: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_esculadesherifrnb.lua:166
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_esculadesherifunmarked.lua:166: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_esculadesherifunmarked.lua:166
[[Photon] Unofficial Car Pack] lua/autorun/tdm_esculadesherifunmarked.lua:166: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_esculadesherifunmarked.lua:166
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_evoxgsrcop.lua:121: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_evoxgsrcop.lua:121
[[Photon] Unofficial Car Pack] lua/autorun/tdm_evoxgsrcop.lua:121: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_evoxgsrcop.lua:121
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_forcrownvicuc.lua:149: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_forcrownvicuc.lua:149
[[Photon] Unofficial Car Pack] lua/autorun/tdm_forcrownvicuc.lua:149: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_forcrownvicuc.lua:149
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordcvtaxi.lua:150: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordcvtaxi.lua:150
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordcvtaxi.lua:150: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordcvtaxi.lua:150
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350.lua:116
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350cop.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350cop.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350cop.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350cop.lua:116
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350fire.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350fire.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350fire.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350fire.lua:116
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350sign.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350sign.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_fordf350sign.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_fordf350sign.lua:116
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_golfmkiiicop.lua:138: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_golfmkiiicop.lua:138
[[Photon] Unofficial Car Pack] lua/autorun/tdm_golfmkiiicop.lua:138: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_golfmkiiicop.lua:138
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_holden427police.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_holden427police.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_holden427police.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_holden427police.lua:116
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_holden427policespin.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_holden427policespin.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_holden427policespin.lua:116: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_holden427policespin.lua:116
[[Photon] Unofficial Car Pack] lua/autorun/tdm_lesis300pho.lua:115: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_lesis300pho.lua:115
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_lesis300pho.lua:115: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_lesis300pho.lua:115
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_mitsuevoxcop.lua:122: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_mitsuevoxcop.lua:122
[[Photon] Unofficial Car Pack] lua/autorun/tdm_mitsuevoxcop.lua:122: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_mitsuevoxcop.lua:122
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_nissanskyliner34pho.lua:139: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_nissanskyliner34pho.lua:139
[[Photon] Unofficial Car Pack] lua/autorun/tdm_nissanskyliner34pho.lua:139: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_nissanskyliner34pho.lua:139
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_nypdfcv.lua:149: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_nypdfcv.lua:149
[[Photon] Unofficial Car Pack] lua/autorun/tdm_nypdfcv.lua:149: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_nypdfcv.lua:149
02/08/2016 17:28:38: Lua Error
[[Photon] Unofficial Car Pack] lua/autorun/tdm_nypdfcvwhelen.lua:149: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_nypdfcvwhelen.lua:149
[[Photon] Unofficial Car Pack] lua/autorun/tdm_nypdfcvwhelen.lua:149: attempt to index global 'Photon' (a nil value)
1. unknown - lua/autorun/tdm_nypdfcvwhelen.lua:149
 
Pure Code

Pure Code

Geek
Messages
180
Score réaction
10
Points
85
enlève tous les véhicules photons
 
  • Initiateur de la discussion
blowjulien

blowjulien

Bambi
Messages
14
Score réaction
0
Points
40
C'est a dire
 
Discord d'entraide
Rejoignz-nous sur Discord