[Release] Jobs System v2.1 and Paycheck v2.1

Everything is wrote here ! Stop be assisted and just read a little dude. If you don’t know, read again.

1 Like

Salut ! Bravo pour ton travail énorme mec ! Merci beaucoup et continues comme ça ! :smiley:

Hi ! Congratulation for your amazing work ! Thanks a lot, keep going ! :wink:

2 Likes

I have to go where after choosing a trade?

1 Like

Thank you for the release man apreciate !

1 Like

I have theses error messages :

For job.sql :

[Err] 1060 - Duplicate column name 'job'
[Err] --
-- Base de données :  `gta5_gamemode_essential`
--

ALTER TABLE `users` ADD `job` int(11) DEFAULT '1';

CREATE TABLE `jobs` (
  `job_id` int(11) NOT NULL,
  `job_name` varchar(40) NOT NULL,
  `salary` int(11) NOT NULL DEFAULT '500'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE `jobs`
  ADD PRIMARY KEY (`job_id`);

ALTER TABLE `jobs` MODIFY `job_id` int(11) NOT NULL AUTO_INCREMENT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
[Msg] Finished - Unsuccessfully
--------------------------------------------------

for jeu_essai.sql :

[Err] 1146 - Table 'gta5_gamemode_essential.jobs' doesn't exist
[Err] --
-- Base de données :  `gta5_gamemode_essential`
--

INSERT INTO `jobs` (`job_id`, `job_name`, `salary`)
VALUES (1, 'Chomeur',500),(2, 'Policier', 1200),(3, 'Pompier', 1200),(4, 'Mineur', 700),(5, 'Chauffeur de taxi', 1000);

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
[Msg] Finished - Unsuccessfully
--------------------------------------------------

2 Likes

nice man now just need to show the jobs in hud ^^

1 Like

Nice dude! thank you so much!

1 Like

Very nice job ! do more maj ! :slight_smile:

1 Like

i need a resource.lua to start, can someone post this ?

Download the .zip you ahve it in

Hi, I installed everything as you said it but when I select the job there is nothing

jobs-system_en 	Ajout du Jobs System v1.0 	6 hours ago
jobs-system_fr 	Ajout du Jobs System v1.0 	6 hours ago
paycheck_en 	Add files via upload 	6 hours ago
paycheck_fr 	Mise à jour du jeu d'essai 	6 hours ago
LICENSE 	Initial commit 	16 hours ago
Paycheck-v1.0.zip 	Ajout de l'archive v1.0 	14 hours ago
README.md 	Update README.md 	7 hours ago
jeu_essai.sql 	Ajout des jeux d'essais dans la racine 	6 hours ago
job.sql 	Ajout des jeux d'essais dans la racine 	6 hours ago
sample.sql

where is the resource.lua ??? @Feared

Go here : https://github.com/PandaBasketteur/Jobs-System-and-Paycheck
Download you language, and in the .zip you have all files to work correctly

i cant select it, because i dont find the blib ^^

Very Very Very great job, thank’s Panda vraiment/realy !!

1 Like

Rien ne se passe quand on choisir un métier est-ce normal ?

Trad english : Nothing happens when choosing a trade is it normal?

1 Like

Sorry, if I could not answer today, I was doing another trick :wink: Soon?

I would answer your question in the evening

Je veux bien un script d’inventaire et de job si jamais vous souhaitez le partager :slight_smile:

Same here, did you find the solution ?

[Err] 1060 - Duplicate column name 'job'
[Err] --
-- Base de données :  `gta5_gamemode_essential`
--

ALTER TABLE `users` ADD `job` int(11) DEFAULT '1';

CREATE TABLE `jobs` (
  `job_id` int(11) NOT NULL,
  `job_name` varchar(40) NOT NULL,
  `salary` int(11) NOT NULL DEFAULT '500'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE `jobs`
  ADD PRIMARY KEY (`job_id`);

ALTER TABLE `jobs` MODIFY `job_id` int(11) NOT NULL AUTO_INCREMENT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
[Msg] Finished - Unsuccessfully

You already have the column job so you have to remove the ALTER TABLE

1 Like