[QUOTE=Chessnut;38488763]Works fine?
[img]http://i.imgur.com/lli3i.png[/img][/QUOTE]
What do you mean 'broken'
[QUOTE=awdmm24;39186914]korean language is broken on this gamemode.
please fix it[/QUOTE]
You will need to delete part of the code
-snip-
[QUOTE=RANDOMlagFTW;39189941]hey umm whenever i go on singleplayer i can use all the commands like /setspawn and /awardmoney i got the script from here thank you who made it :D but on the server i got ulx and im owner ranked and i cant use them... HELP![/QUOTE]
Owner or Superadmin?
Is Owner derived from Superadmin, or User?
[QUOTE=Chessnut;39187504]What do you mean 'broken'[/QUOTE]
onlyyyyy Korean input will crash.
ex) ㅋㅋㅋㅋㅋ, ㅁㄴㅇㅁㄴㅇ, ㅂㅈㄷㅂㅈㄷ, ㅁ
Is there a way to add SCars/TDM cars to the market? I've tried it myself but I couldn't get it to work.
-snip-
-snip-
[QUOTE=RANDOMlagFTW;39201439]Tho i want to ask about the jobs tab i wonder wher to add the tables lua file?[/QUOTE]
Please speak normally.
-snip-
[QUOTE=kjh0105;39191237]onlyyyyy Korean input will crash.
ex) ㅋㅋㅋㅋㅋ, ㅁㄴㅇㅁㄴㅇ, ㅂㅈㄷㅂㅈㄷ, ㅁ[/QUOTE]
Then... What should i do?
Vehicles are buggy, when i spawn one it rolls around and will not let me in, also lockpicks say there not valid when i try to equip them
[IMG]http://i49.tinypic.com/21o0u83.png[/IMG]
-snip-
Your vehicles aren't working because the vehicle scripts have been removed, rendering them useless.
-snip-
*snipped*
[QUOTE=bayrock;39224753]I'm loving this gamemode and currently running it with 50 slots. I also have the problems listed above though and would love some help getting them fixed whenever you get the time. Thanks![/QUOTE]
I can help you with the car stuff if you need later, add me on steam @ ds2198
[editline]15th January 2013[/editline]
[QUOTE=RANDOMlagFTW;39189941]hey umm whenever i go on singleplayer i can use all the commands like /setspawn and /awardmoney i got the script from here thank you who made it :D but on the server i got ulx and im owner ranked and i cant use them... HELP![/QUOTE]
Just make a new rank called owner derived from super admin or just make yourself super admin
[editline]15th January 2013[/editline]
[QUOTE=RANDOMlagFTW;39213744]Any way to fix this? atleast one car works and its the buggy.... i guess i need to add custom cars?[/QUOTE]
Yes
[QUOTE=NightmareX91;39191336]Is there a way to add SCars/TDM cars to the market? I've tried it myself but I couldn't get it to work.[/QUOTE]
I've done it and mine work
Damn, I thought this gamemode was fucked up like hell, due to the missing content.
I decided to give it another try, and joined a server with working Pistachio, and that looked quiet epic actually.
After discovering I needed the content pack, it finally works for me now.
Time to modify!:)
Edit:
Where's the saved playerdata like Karma and Money at?
Stuff in /Data/ is encoded.
[QUOTE=ds;39231312]I've done it and mine work[/QUOTE]
Mind sharing [b]without[/b] adding you on Steam? I don't like adding random people just for a simple lua file.
[QUOTE=NightmareX91;39232067]Mind sharing [b]without[/b] adding you on Steam? I don't like adding random people just for a simple lua file.[/QUOTE]
Sure, in pistachio/gamemode/main/items make a file called sh_vehicle_"carsnamehere".lua
For example TDM's supra i have mine named sh_vehicle_supra and inside the lua file i have,
[CODE]local ITEM = {};
ITEM.base = "base_vehicle";
ITEM.name = "Toyota Supra"; -- name it whatever you want
ITEM.uniqueID = "vehicle_supra"; -- make this name anything you want too after the vehicle_ part of course
ITEM.model = "models/tdmcars/supra.mdl";
ITEM.description = "An amazing car from 1993-2002."; -- of course anything goes here
ITEM.price = 180000; -- set the price
ITEM.vehicleScript = "supra2";
ITEM.seats = {
{ offset = Vector(21, 2, 21), rotation = Angle(0, 0, 0), exit = Vector(78, 7, 40) },
{ offset = Vector(21, 40, 26), rotation = Angle(0, 0, 0), exit = Vector(93, 40, 40) },
{ offset = Vector(-22, 40, 23), rotation = Angle(0, 0, 0), exit = Vector(-106, 40, 40) }
};
pistachio.item:Register(ITEM);[/CODE]
For the seats dont mind them, i didnt modify mine and it still works fine. Make sure the script is the same name as it is in your garrysmod/scripts folder and be sure you get the correct folders for the model.
[editline]15th January 2013[/editline]
Could someone help me set up the jobs tab, I'm having issues.
[QUOTE=ds;39232246]Sure, in pistachio/gamemode/main/items make a file called sh_vehicle_"carsnamehere".lua
For example TDM's supra i have mine named sh_vehicle_supra and inside the lua file i have,
[CODE]local ITEM = {};
ITEM.base = "base_vehicle";
ITEM.name = "Toyota Supra"; -- name it whatever you want
ITEM.uniqueID = "vehicle_supra"; -- make this name anything you want too after the vehicle_ part of course
ITEM.model = "models/tdmcars/supra.mdl";
ITEM.description = "An amazing car from 1993-2002."; -- of course anything goes here
ITEM.price = 180000; -- set the price
ITEM.vehicleScript = "supra2";
ITEM.seats = {
{ offset = Vector(21, 2, 21), rotation = Angle(0, 0, 0), exit = Vector(78, 7, 40) },
{ offset = Vector(21, 40, 26), rotation = Angle(0, 0, 0), exit = Vector(93, 40, 40) },
{ offset = Vector(-22, 40, 23), rotation = Angle(0, 0, 0), exit = Vector(-106, 40, 40) }
};
pistachio.item:Register(ITEM);[/CODE]
For the seats dont mind them, i didnt modify mine and it still works fine. Make sure the script is the same name as it is in your garrysmod/scripts folder and be sure you get the correct folders for the model.
[editline]15th January 2013[/editline]
Could someone help me set up the jobs tab, I'm having issues.[/QUOTE]
Alright, thanks.
[QUOTE=NightmareX91;39232342]Alright, thanks.[/QUOTE]
No problem, if you cant figure out something else let me know i might be able to help.
[QUOTE=ds;39232379]No problem, if you cant figure out something else let me know i might be able to help.[/QUOTE]
I can figure everything else out, it was just the vehicle scripts I couldn't figure out.
[QUOTE=NightmareX91;39232614]I can figure everything else out, it was just the vehicle scripts I couldn't figure out.[/QUOTE]
Any clue how to add the jobs tab from page 2? I need help with that.
[QUOTE=ds;39232715]Any clue how to add the jobs tab from page 2? I need help with that.[/QUOTE]
I will look into that after I have sorted out some modifications for a community I am working for.
-snip-
[QUOTE=RANDOMlagFTW;39240661]OH btw chessnut ther is no pistachio_lockpick in entities :3 so it doesnt work when u press use[/QUOTE]
That is because you don't press use. You buy it from the market and you open your inventory while looking at a locked entity, find the lockpick and click the Use button :v
-snip-
I removed vehicles that were missing the scripts.
Sorry, you need to Log In to post a reply to this thread.