SCPD
Donator-
Posts
436 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by SCPD
-
Yea the Police Chief decided not to take the city council's opinion and converted to this because it looks "cool"
-
Oh my god man. I just saw this post. Thank you soooooo much for making this. That thing is sexy. And absolutely no FPS drops. You are a freaking god! Nick: The ultimate modder :)
-
Some Toronto Police Service Cars from our boys and girls South of the GTA (Greater Toronto Area not Grand Theft Auto) http://s3.amazonaws.com/wheelsca/wp-content/uploads/2012/05/police-808x455.jpg http://storage.torontosun.com/v1/dynamic_resize/sws_path/suns-prod-images/1297515987098_ORIGINAL.jpg?quality=80&size=650x Taxi/Police car http://www.autofocus.ca/media/mpycvk4o4edklr/atom_featured/02_weird-Odd-Canada-Police-Cars-Cruisers-Cops.jpg?t=1b54e0912dc018fe7bf77b8075decf3c Note this cop car is our newest cop car we recently had. The Ford Taurus in Stealth. The TPS decided to change the scheme because its getting old and it looks too much more like the York Regional Police scheme. Unfortunately this cop car had lots of controversy as the public sees it as "racism" for some reason and safety expert says the visibility of the new cruiser are very hard to see (as many jaywalkers keeps getting hit by these patrol cars at night...) So the Police Chief decided to stop the stealth cars and decided to switch back to the white, red, and blue scheme. The stealth versions are still seen in Toronto tho... http://www.citynews.ca/wp-content/blogs.dir/sites/10/2016/11/11/1111-torontopolicecar.jpg
-
[2017-03-08 20:38:12] [Output] : [Global - Unit 29] [Mod] Scpdunit23: gun [2017-03-08 20:38:15] [Output] : [Global - Unit 29] [Mod] Scpdunit23: i mean gum [2017-03-08 20:38:15] [Output] : [Global - Unit 1035] Slimmaster: ohhh [2017-03-08 20:38:18] [Output] : [Global - Unit 1035] Slimmaster: oh [2017-03-08 20:38:19] [Output] : [Global - Unit 1035] Slimmaster: lol [2017-03-08 20:38:21] [Output] : [Global - Unit 29] [Mod] Scpdunit23: xD
-
Dispatch: All units please respond code 1 or code 2. Me: Copy that!
-
This is bascially another Unmarked Ford Taurus. I initially decided not to release it to the public and basically used it to test the ground clearance when replacing the glenshit model in GTA SA. Anyways the model of the Taurus is the exact same to Nick's only this one is shaded black and is retrofitted with blue lights and a pushbar. http://i.imgur.com/lxH7jui.jpg' alt='IMGUR>'> http://i.imgur.com/Mz2tHAT.jpg' alt='IMGUR>'> Download link: https://www.mediafire.com/?amm2114p95rdcpj Blue Lights TXD Hack to make the blue lights show up: http://www.mediafire.com/file/zyy6k9163pksmnb/Blue_Lights_TXD_Hack.rar Credits For Model: - Turn 10 Studios FM4 - Grimm - Tazzzjor - Reckless - DodgeBoy - Traumapak - KevinDV - Bxbugs123 Police Lighting Equipment: X1200: -Original By Bxbugs123 (Conversion by ThatOneIowan) Code 3 XT6 series: -Original by BxBugs (Converted by ThatOneIowan) Code 3 PSE x2100: -Bxbugs Lighting Setup and Texture by DominatorC, nick and ThatOneIowan (FRMods) Parts: All parts by their respective authors. They include but are not limited to... 05bowtie bxbugs123 penguin.2254 LtCaine Lightbar Guy AEMT JPOC Parts modified by ThatOneIowan, nick and DominatorC Skin: SCPD If i forget anyone to credit, just PM me
-
Well since some people like to prefer to drive some of their local PD patrol cars in MTA SA server it would be interesting to know what their local PD patrol cars look like in their area. Post some of your local PD cars here if you want to share, doesnt matter where you live (perhaps they might be skinned ;)). I'll start: Local PD in my area is the York Regional Police. Recently stockpiling some CVPI and begun adding some Ford Taurus, Explorers, Tahoes, and apparently Dodge Ram Pickup trucks : http://farm2.static.flickr.com/1485/25961321961_7f538ecb03.jpg http://storage.canoe.com/v1/dynamic_resize/?src=http://cnews.canoe.com/CNEWS/Crime/2016/04/07/murder-suicide.jpg&size=650x366&quality=85
-
Would be easier if comments and docstrings were added so I can know what the function does and what the function return type is. I could study lua scripting when I have time. Just that uni is bombarding me with other com sci stuff right now :P Anyways here is a big piece of code from Java when i was programming the scoreboard for a space shooter game with Greenfoot IDE (yea I should have added comments but it was two years ago when I started to program :P) import greenfoot.*; import java.util.*; import java.awt.*; /** * Write a description of class Scoreboard here. * * @author (your name) * @version (a version number or a date) */ public class Scoreboard extends Displays { private boolean run; int [] topTen = new int [10]; In in = new In ("ListOfScores.in"); /** * Act - do whatever the Scoreboard wants to do. This method is called whenever * the 'Act' or 'Run' button gets pressed in the environment. */ public void act() { if (!run) { run = true; listOfScores (getScore()); } } public int getScore () { Gameplay game = (Gameplay) getWorld(); SpaceShip ship = game.getSpaceShip(); Score score = game.getScore(); int currentScore = 0; if (ship.getIsDead()) { currentScore = score.getScore(); } return currentScore; } public void listOfScores (int addScore) { ArrayList <Integer> list = new ArrayList <Integer> (); if (in.hasNextLine ()) { while (in.hasNextLine()) { int num = Integer.valueOf (in.readLine()); list.add (num); } } else { for (int i = 0; i < 10; i++) { list.add (0); } } list.add (addScore); int [] order = new int [list.size()]; for (int i = 0; i < order.length; i++) { order [i] = list.get (i).intValue(); } if (!isSorted(order)) { quicksort (order); } for (int i = 0; i < 10; i++) { topTen[i] = order [i]; } Out out = new Out ("ListOfScores.in"); for (int i = 0; i < topTen.length; i++) { out.println (topTen[i]); } out.close(); GreenfootImage image = new GreenfootImage (400, 600); image.setColor (Color.WHITE); image.setFont (new Font ("Arial", Font.PLAIN, 20)); image.drawString ("Top 10 High Scores", 400/2, 20); boolean red = true; for (int i = 0; i < 10; i++) { if (topTen [i] != getScore()) { image.setColor (Color.WHITE); } else if (topTen [i] == getScore() && red){ image.setColor (Color.RED); red = false; } else if (topTen [i] == getScore() && !red){ image.setColor (Color.WHITE); } image.drawString (i + 1 + ". " + topTen[i], 400/2, (i + 2) * 30); } setImage (image); } private void exch (int [] a, int i, int j) { int store = a[i]; a[i] = a[j]; a[j] = store; } public int partition(int[] a, int lo, int hi) { int i = lo; int j = hi + 1; while (true) { while (a[++i] > a[lo]) { // Find item on left to swap if (i == hi) { break; } } while (a[--j] < a[lo]) { if (j == lo) { break; } } if (i >= j) { break; // Check if pointers cross } exch(a, i, j); // Swap } exch(a, lo, j); // Swap partitioning element return j; // Return index of item now know to be in place } private void quicksort(int[] a, int lo, int hi) { if (hi <= lo) return; int j = partition(a, lo, hi); quicksort(a, lo, j-1); quicksort(a, j+1, hi); } public void quicksort(int[] a) { StdRandom.shuffle(a); quicksort(a, 0, a.length - 1); } public boolean isSorted (int [] a) { boolean sorted = false; for (int i = 0; i < a.length-1; i++) { if (a[i] > a[i+1]) { sorted = true; } else { sorted = false; } } return sorted; } }
-
Everyone somehow drove their cars into the sea during the pursuit, including every cops and suspects... Sooo some police helis tries to save us NJSPKING[/member] http://i.imgur.com/yABbuJV.jpg' alt='IMGUR>'> Spoiler alert: Helis sank as well
-
A: This random cop car on the right from a random kids show in a random youtube channel has pink and purple lightbar :P http://i.imgur.com/YNC5xCV.jpg' alt='IMGUR>'> Q: Why am I watching a random kids show in a random youtube channel?
-
I'm currently taking a university program right now learning computer science materials. Currently learning Java, C++, PHP and Python. Anyways I can share a few tips for you: -Tip #1: Do "lazy coding": What I mean by this is to write helper functions in case if multiple functions uses the same lines of code over and over again. This way instead of typing the same 25 lines of code again, you can put those 25 mines of code in one function and just write out that one line in other functions (I'll show you an example later) -Tip #2: Be careful of using global variables: It's best to use local variables in functions rather than using global variables for organization purposes. -Tip #3: Watch for efficiency: There are so many ways to code a function to do a specific task but code it in a way so the function can efficiently do the task faster. For e.g. insertion sort uses two loops to sort elements in order in a list so the efficiency is o(n^2). Mergesort uses recursion and goes through the list once to sort the elements so the average efficiency is O(log n), faster than insertion sort. Bogosort uses a random generator to randomly generate elements until the list is sorted so that efficiency is forever! -Tip #4: When doing Object-Orientated Programming, plan out the object classes first before coding: My professors always says: Planning and debugging takes the most amount of time. Coding is the least. If your doing OOP programming, plan ahead first. Determining all the properties of the class and methods first before coding. Not only this makes it easier to code but it also makes team development easier without having to reference other teammates code all the time. -Tip #5: Debug, debug, debug! -Tip #6: Comment your code: You might be able to understand your own code but there are other people who can't read your code without tracing the entire function. Adding comments can help other programmers read the code. -Tip #7: Use variable names that's easy to understand: Variable names like 'x', 'y', 'z' arent really helpful. Like comments, people cant understand without tracing. Use more descriptive variables such as 'list_of_int' or 'counter', etc. If I have any more tips I can update this stuff here. I will show u some of my past coding later.
-
My expression to this materpiece:
-
Suggestion for: MTA Suggestion: Add a megaphone on police vehicles/helis that plays an audio on police commands like "stop the vehicle" or "get on the ground" Why?: Makes pursuits more realistic. Also during a standoff you can get the suspect on the ground without getting shot unexpectedly (suspect may ignore the commands tho).
-
Welp time to use my ghetto paint program and start being artistic :P Anyways would multiple entries be fine by any chance? I actually got a few images stored on facebook. My current youtube thumbnail for SAPDFR series: http://i.imgur.com/Jbnkknj.jpg' alt='IMGUR>'> Other stuff:
-
Make stealing civilian vehicles against the rules?
SCPD replied to Blast3r's topic in [FR:SA] Discussion
We had previously made bans before on players stealing player vehicles but we never realize this rule was not added before... Anyways if its under the acts of trolling then it should be enforced. However if its trying to move a vehicle to the side of the road type of stuff then that can be ignored. I'ma vote yes with the exception of moving vehicles over to the side. -
So much brain teasing!?!?!?!?! I WANT IT WAHHH!!! Anyways nice mods lol
-
My specs are crap Intel Core i5-3427U at 1.8GHz Only 128GB SSD 8GB DDRAM Intel HD4000 Graphics :P Yep Blast3r[/member] refers this as 'ghetto' :P
-
Well this is interesting so I'm just gonna post this news article :P Also apparently Australian Police hates LSPDFR for some reason... http://www.inquisitr.com/3991177/australian-police-minister-lashes-out-at-grand-theft-auto-mod-lspdfr/
-
Ate a potato :)
-
Nice to see you back in modding again NJSP :D Any chance for the CHP bike to be ELM enabled?
-
Time to take one suspect from LSPD to that one SAHP station at Flint... http://vignette2.wikia.nocookie.net/spongebob/images/8/8d/Can_You_Spare_a_Dime%3F_58.jpg/revision/latest?cb=20100307012047 http://vignette3.wikia.nocookie.net/spongebob/images/7/79/Can_You_Spare_a_Dime%3F_59.jpg/revision/latest?cb=20100307012128 http://vignette1.wikia.nocookie.net/spongebob/images/3/3a/Can_You_Spare_a_Dime%3F_60.jpg/revision/latest?cb=20100307012213
-
[Suggestion] - Player driven towtrucks.
SCPD replied to JuanTwoThree's topic in Accepted Suggestions
This somewhat sounds like more RP-ish to me unless you wanna consider moving parked cars :P -
There will be no chance that spike strips are getting released before the AI is fully rewritten. Every saw a pursuit guy driving? Now imagine him having blown tires. thas why you make it so you can't destroy police vehicle tires I think he means the suspect xD
-
As long as theres no fighting between clans or make up new rules and stuff for that said clan that could interfere with the public rules and regulations I approve this. We once had clans before but disbanded them due to controlling jurisdication on callouts and new rules that don't make sense. We ended up selling private SAPDFR servers to those clans eventually. Btw why was i mentioned in this post :P
-
Hmm we noticed how the AI shooting player cars is next to impossible to blow up. Perhaps we can make it not entirely bulletproof but much harder to blow up a vehicle with any ammunition.