Jun 7, 2017, 06:56 PM
Jun 7, 2017, 07:32 PM
It's possible to load a HTML page into derma.
I don't know the specifics of the Police DB, so I can't comment on that further.
Theoretically, it's possible.
I don't know the specifics of the Police DB, so I can't comment on that further.
Theoretically, it's possible.
Jun 7, 2017, 09:42 PM
From what I understand you can pull data from a sheet into HTML, but how you'd do that is another matter.
Jun 7, 2017, 10:51 PM
Jun 8, 2017, 02:04 AM
Jun 8, 2017, 07:12 AM
Jun 8, 2017, 06:34 PM
Update
Added (by Anon)
- Dashboard (I like it, but next time please do not edit the Spreadsheet without prior approval from me.)
![[Image: 7bfb37271dda9dacea2c29ba599b7552.jpeg]](https://gyazo.com/7bfb37271dda9dacea2c29ba599b7552.jpeg)
(Whichever Anon added it, PM me and I will add you to this page)
Jun 9, 2017, 07:41 AM
Perfect finally a thing
Jun 10, 2017, 06:17 AM
MAJOR UPDATE
6/9/2017
Added:
Incident Reports
![[Image: 99dc7bd7bb77708e9a85373610933a39.jpeg]](https://gyazo.com/99dc7bd7bb77708e9a85373610933a39.jpeg)
What is this?
Incident Reports are a new optional way of adding more detail to your situations as an officer. This means you get to see a sneak peak of the boring part about police work, paperwork!
How do I use it?
![[Image: b4fe83b1aec45bd2b3a9fa1d9677c145.jpeg]](https://gyazo.com/b4fe83b1aec45bd2b3a9fa1d9677c145.jpeg)
When you want to write an Incident Report (Again, optional) all you have to do is go to the link below this post and you can access the Incident Report Form. This requires you to fill out such things as:
Your name
Items of Interest
A short summary of the incident
Resources requested
And more!
To access already submitted reports, all you have to do is click on the “Incident Reports” sheet on the Dispatch Board Spreadsheet.
Now, to keep with NLR so these may be used properly while sticking with the rules, every Friday, the submitted reports are wiped, allowing all players a clean slate and a new chance!
Some tips with using this:
Be specific but concise. The more detail the better, but we don’t want a paragraph.
Don’t make duplicate reports! Ask your supervisor or any other officers on scene who should write it?
If you mess up a report, don’t worry. Contact Soviethooves by either commenting on the Incident Report sheet for someone to remove a report, or contact him through Steam or Forum PM.
DO NOT TOUCH THE “DON’T TOUCH” SHEET. THAT’S ALL THE BACKEND CODE STUFF FOR THE INCIDENT REPORTS TO SHOW CORRECTLY!!!
Main Dispatch Board:
Incident Report:
Limelight - Link watcher |
|||||
You're about to enter the following site:
Please note: You should only visit trusted sites. We are not responsible for any loss of your privacy. |
Jun 10, 2017, 07:52 AM
(Jun 10, 2017, 06:17 AM)Soviethooves Wrote: [ -> ]MAJOR UPDATE6/9/2017
Added:
Incident Reports
What is this?
Incident Reports are a new optional way of adding more detail to your situations as an officer. This means you get to see a sneak peak of the boring part about police work, paperwork!
How do I use it?
When you want to write an Incident Report (Again, optional) all you have to do is go to the link below this post and you can access the Incident Report Form. This requires you to fill out such things as:
Your name
Items of Interest
A short summary of the incident
Resources requested
And more!
To access already submitted reports, all you have to do is click on the “Incident Reports” sheet on the Dispatch Board Spreadsheet.
Now, to keep with NLR so these may be used properly while sticking with the rules, every Friday, the submitted reports are wiped, allowing all players a clean slate and a new chance!
Some tips with using this:
Be specific but concise. The more detail the better, but we don’t want a paragraph.
Don’t make duplicate reports! Ask your supervisor or any other officers on scene who should write it?
If you mess up a report, don’t worry. Contact Soviethooves by either commenting on the Incident Report sheet for someone to remove a report, or contact him through Steam or Forum PM.
DO NOT TOUCH THE “DON’T TOUCH” SHEET. THAT’S ALL THE BACKEND CODE STUFF FOR THE INCIDENT REPORTS TO SHOW CORRECTLY!!!
Main Dispatch Board:https://docs.google.com/spreadsheets/d/1ToAigjouaky-E2ebDLJSmGZs7kxqdDhgBJElVzrsU58/edit?usp=sharing
Limelight - Link watcher
You're about to enter the following site:
https://docs.google.com/spreadsheets/d/1...sp=sharing
Limelight - Link watcher
You're about to enter the following site:
https://docs.google.com/spreadsheets/d/1ToAigjouaky-E2ebDLJSmGZs7kxqdDhgBJElVzrsU58/edit?usp=sharing
Please note: You should only visit trusted sites. We are not responsible for any loss of your privacy.
Please note: You should only visit trusted sites. We are not responsible for any loss of your privacy.
Incident Report:
The link for the incident board doesn't work
Jun 10, 2017, 12:37 PM
Should work now. If not, when I get home I'll be able to fix it.
Jun 10, 2017, 12:50 PM
(Jun 7, 2017, 07:32 PM)Doctor Internet Wrote: [ -> ]It's possible to load a HTML page into derma.
I don't know the specifics of the Police DB, so I can't comment on that further.
Theoretically, it's possible.
Why not make it from scratch instead of using HTML? I think the current database is a material like this:
Code:
local PoliceDBFrame = vgui.Create( "DFrame" )
PoliceDBFrame:SetPos( ScrW()-20-800, ScrH()-600 )
PoliceDBFrame:SetSize( 950, 750 )
PoliceDBFrame:SetTitle( "" )
PoliceDBFrame:SetDraggable( false )
PoliceDBFrame:SetVisible( true )
PoliceDBFrame:ShowCloseButton( false )
PoliceDBFrame:MakePopup(false)
PoliceDBFrame.Paint = function()
draw.RoundedBox( 0, 0, 0, 0, 0, Color( 0, 0, 0, 0 ) )
local databasetemp = Material( "materials/ll/dispatch.png" )
surface.SetDrawColor( 255, 255, 255, 255 )
surface.SetMaterial( databasetemp )
surface.DrawTexturedRect( 0, 0, 900, 700 )
end
So if you want to edit the database then I think you need Developer or a contributor that knows how to do ingame materials.
Jun 13, 2017, 11:15 PM
(Jun 10, 2017, 12:50 PM)Zona Wrote: [ -> ](Jun 7, 2017, 07:32 PM)Doctor Internet Wrote: [ -> ]It's possible to load a HTML page into derma.
I don't know the specifics of the Police DB, so I can't comment on that further.
Theoretically, it's possible.
Why not make it from scratch instead of using HTML? I think the current database is a material like this:
Code:local PoliceDBFrame = vgui.Create( "DFrame" )
PoliceDBFrame:SetPos( ScrW()-20-800, ScrH()-600 )
PoliceDBFrame:SetSize( 950, 750 )
PoliceDBFrame:SetTitle( "" )
PoliceDBFrame:SetDraggable( false )
PoliceDBFrame:SetVisible( true )
PoliceDBFrame:ShowCloseButton( false )
PoliceDBFrame:MakePopup(false)
PoliceDBFrame.Paint = function()
draw.RoundedBox( 0, 0, 0, 0, 0, Color( 0, 0, 0, 0 ) )
local databasetemp = Material( "materials/ll/dispatch.png" )
surface.SetDrawColor( 255, 255, 255, 255 )
surface.SetMaterial( databasetemp )
surface.DrawTexturedRect( 0, 0, 900, 700 )
end
So if you want to edit the database then I think you need Developer or a contributor that knows how to do ingame materials.
Do you mean something like the F1 Menu? If so, I like that Idea. Could it then relay information from there to officers over chat? Not everyone uses the radio.
Jun 14, 2017, 01:54 PM
(Jun 13, 2017, 11:15 PM)Marvin Hampton Wrote: [ -> ](Jun 10, 2017, 12:50 PM)Zona Wrote: [ -> ](Jun 7, 2017, 07:32 PM)Doctor Internet Wrote: [ -> ]It's possible to load a HTML page into derma.
I don't know the specifics of the Police DB, so I can't comment on that further.
Theoretically, it's possible.
Why not make it from scratch instead of using HTML? I think the current database is a material like this:
Code:local PoliceDBFrame = vgui.Create( "DFrame" )
PoliceDBFrame:SetPos( ScrW()-20-800, ScrH()-600 )
PoliceDBFrame:SetSize( 950, 750 )
PoliceDBFrame:SetTitle( "" )
PoliceDBFrame:SetDraggable( false )
PoliceDBFrame:SetVisible( true )
PoliceDBFrame:ShowCloseButton( false )
PoliceDBFrame:MakePopup(false)
PoliceDBFrame.Paint = function()
draw.RoundedBox( 0, 0, 0, 0, 0, Color( 0, 0, 0, 0 ) )
local databasetemp = Material( "materials/ll/dispatch.png" )
surface.SetDrawColor( 255, 255, 255, 255 )
surface.SetMaterial( databasetemp )
surface.DrawTexturedRect( 0, 0, 900, 700 )
end
So if you want to edit the database then I think you need Developer or a contributor that knows how to do ingame materials.
Do you mean something like the F1 Menu? If so, I like that Idea. Could it then relay information from there to officers over chat? Not everyone uses the radio.
Yes! We are speaking the same language

Jun 14, 2017, 02:13 PM
HOTTT