Login
Sign Up


You are using the mobile version of the forum, some features have been disabled to have it responsive.
Limelight Reunion 2024 - v4b1Limelight Discord
Ares Defence Services Discord
Limelight Reunion 2024 - v4b1Limelight DiscordAres Defence Services Discord

receiptDevelopment Blog:

Development Contributor Workflow

receiptHR Blog:

What *are* they doing over there?

receiptTeacher Blog:

Insight into the Teacher Team

receiptDevelopment Blog:

Infrastructure Upgrade 11/2019

receiptDevelopment Blog:

how suggestions???

receiptDevelopment Blog:

Planning for the future.


This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.
Poll: Add the Suggestion?
You do not have permission to vote in this poll.
Yes
80.00%
4 80.00%
No
20.00%
1 20.00%
Total 5 vote(s) 100%
* You voted for this item. [Show Results]


Closed 
CityRP Remove FF resupply timer
Taylor radio_button_checked
"You are not torturing people in your office"
Contributor
Posts: 3,089
Threads: 177
Likes Given: 2639
Likes Recieved: 1993 in 1215 posts
Joined: Aug 2015
Reputation: 40
#1
Apr 3, 2021, 02:39 AM
Explain your suggestion, in detail: Remove the cooldown from /resupply for Firefighters

Explain why the suggestion should be implemented: It makes life extremely difficult having to wait a minute every minute because you’ve gone through all your “ammo” whilst fighting a particularly large fire.

I don’t see any benefits to this cooldown.
[Image: 800px-PWRR_Tiger.svg.png]
Have I helped you out? Leave a rep!
Limelight Gaming radio_button_checked
Community Management
Posts: 5,871
Threads: 112
Likes Given: 2
Likes Recieved: 134 in 39 posts
Joined: Nov 2015
Reputation: 47
#2
Apr 3, 2021, 02:39 AM
Thank you for your suggestion, Taylor!

It will take a while for it to be reviewed by our staff-members.
Meanwhile, expect some nice feedback from our community.
Mr.Sir radio_button_checked
(ง°ل͜°)ง
Administrator (CityRP)
Posts: 995
Threads: 67
Likes Given: 575
Likes Recieved: 1145 in 633 posts
Joined: Aug 2015
Reputation: 14
#3
Apr 3, 2021, 10:32 AM
Yes gamer
[Image: 7e5c669eda1367f9c3442871f42724ab.png]
Thank you @Blackout for the signature.
----------------------------------------------------------------------------
Robin Lucchese - The Lucchese Family. Missing
Dr.Cletus - Unlicensed Doctor. Active
Buck Cletus - Redneck. Active
Charles Genovese - The Genovese Family. Active
Ofc. R. Morris | 3L-009 - Jersey City Police Department. Resigned
Doctor Internet radio_button_checked
Management, Developer, Administrator, Business Adviser, DPO, Security
Core Manager
Posts: 12,556
Threads: 1,763
Likes Given: 425
Likes Recieved: 3473 in 1670 posts
Joined: Aug 2015
Reputation: 35
#4
Apr 4, 2021, 06:35 PM
Ideally we don't want it fully removed, as it provides an incentive to use different vehicles (each engine has a different delay and different supply type).

What I would like is, in your opinion, a more balanced set of timers @Taylor.

Code:
local resuplyDefault = 120
local resupply = {}
resupply["Fire_Engine"] = {type = "fire", msg = "takes out full canisters of flame-retardant foam from the engine's lockers.", delay = 60}
resupply["fire_engine"] = {type = "fire", msg = "takes out full canisters of flame-retardant foam from the engine's lockers.", delay = 60}
resupply["fire_ladder"] = {type = "fire", msg = "grabs a fire extinguisher from the truck's locker.", delay = 90}
resupply["fire_heavy"] = {type = "rescue", msg = "pulls out rescue supplies from the engine's lockers.", delay = 60}
resupply["fire_sub"] = {type = "fire", msg = "grabs a fire extinguisher from the Suburban's locker."}
resupply["fire_crownvic"] = {type = "fire", msg = "grabs a fire extinguisher from the Crown Victoria's locker."}
resupply["ambulance_e350"] = {type = "ems", msg = "takes out a small box of medical supplies from the back of the Tahoe."}
resupply["Ambulance"] = {type = "ems", msg = "grabs medical supplies and chemical compounds from the ambulance."}
resupply["sgm_g5500ambu"] = {type = "ems", msg = "removes a small medical kit from the morgue van."}
resupply["police_tahoe"] = {type = "police", msg = "grabs additional equipment from the Tahoe.", delay = 60}
resupply["2011_crownvic_cop"] = {type = "police", msg = "resupplies from the locker in the Crown Vic."}
resupply["fpiu_2016"] = {type = "police", msg = "resupplies from the FPIU's locker."}
resupply["Policecar"] = {type = "police", msg = "resupplies from the Taurus' arms locker."}
resupply["police_charger"] = {type = "police", msg = "pulls out some supplies chucked in the boot of the interceptor.", delay = 180}
resupply["swatvan"] = {type = "police", msg = "grabs extra equipment from the SWAT Van.", delay = 30}
resupply["ss_sub"] = {type = "ss", msg = "grabs Secret Service equipment from the vehicle's arms locker."}
resupply["locker_fire"] = {type = "fire", msg = "takes out flame-retardant foam tanks from the locker.", delay = 30}
resupply["locker_medic"] = {type = "ems", msg = "takes out advanced medical kits, vials of chemicals and other supplies from the locker.", delay = 30}
resupply["locker_rescue"] = {type = "rescue", msg = "grabs rescue supplies from the locker.", delay = 30}
resupply["locker_police"] = {type = "police", msg = "resupplies from the arms locker.", delay = 30}
resupply["locker_ss"] = {type = "ss", msg = "grabs Secret Service equipment from the locker.", delay = 30}
For Data Protection Queries, please email info@limelightgaming.net.
For Business, Contributor or Development queries, please PM me.
For Appeals, please post in the relevant subforum.
For Security Information, your best bet is to speak to Burnett.
Taylor radio_button_checked
"You are not torturing people in your office"
Contributor
Posts: 3,089
Threads: 177
Likes Given: 2639
Likes Recieved: 1993 in 1215 posts
Joined: Aug 2015
Reputation: 40
#5
Apr 4, 2021, 06:58 PM
(Apr 4, 2021, 06:35 PM)Doctor Internet Wrote: Ideally we don't want it fully removed, as it provides an incentive to use different vehicles (each engine has a different delay and different supply type).

What I would like is, in your opinion, a more balanced set of timers @Taylor.

Code:
local resuplyDefault = 120
local resupply = {}
resupply["Fire_Engine"] = {type = "fire", msg = "takes out full canisters of flame-retardant foam from the engine's lockers.", delay = 60}
resupply["fire_engine"] = {type = "fire", msg = "takes out full canisters of flame-retardant foam from the engine's lockers.", delay = 60}
resupply["fire_ladder"] = {type = "fire", msg = "grabs a fire extinguisher from the truck's locker.", delay = 90}
resupply["fire_heavy"] = {type = "rescue", msg = "pulls out rescue supplies from the engine's lockers.", delay = 60}
resupply["fire_sub"] = {type = "fire", msg = "grabs a fire extinguisher from the Suburban's locker."}
resupply["fire_crownvic"] = {type = "fire", msg = "grabs a fire extinguisher from the Crown Victoria's locker."}
resupply["ambulance_e350"] = {type = "ems", msg = "takes out a small box of medical supplies from the back of the Tahoe."}
resupply["Ambulance"] = {type = "ems", msg = "grabs medical supplies and chemical compounds from the ambulance."}
resupply["sgm_g5500ambu"] = {type = "ems", msg = "removes a small medical kit from the morgue van."}
resupply["police_tahoe"] = {type = "police", msg = "grabs additional equipment from the Tahoe.", delay = 60}
resupply["2011_crownvic_cop"] = {type = "police", msg = "resupplies from the locker in the Crown Vic."}
resupply["fpiu_2016"] = {type = "police", msg = "resupplies from the FPIU's locker."}
resupply["Policecar"] = {type = "police", msg = "resupplies from the Taurus' arms locker."}
resupply["police_charger"] = {type = "police", msg = "pulls out some supplies chucked in the boot of the interceptor.", delay = 180}
resupply["swatvan"] = {type = "police", msg = "grabs extra equipment from the SWAT Van.", delay = 30}
resupply["ss_sub"] = {type = "ss", msg = "grabs Secret Service equipment from the vehicle's arms locker."}
resupply["locker_fire"] = {type = "fire", msg = "takes out flame-retardant foam tanks from the locker.", delay = 30}
resupply["locker_medic"] = {type = "ems", msg = "takes out advanced medical kits, vials of chemicals and other supplies from the locker.", delay = 30}
resupply["locker_rescue"] = {type = "rescue", msg = "grabs rescue supplies from the locker.", delay = 30}
resupply["locker_police"] = {type = "police", msg = "resupplies from the arms locker.", delay = 30}
resupply["locker_ss"] = {type = "ss", msg = "grabs Secret Service equipment from the locker.", delay = 30}

See I didn't know this, I assumed it was the same timer for everything. A reduction would be nice though, especially for the Engine (as we can't make use of the water tank it would have)
[Image: 800px-PWRR_Tiger.svg.png]
Have I helped you out? Leave a rep!
Judge Rage radio_button_checked
Deny, Defend, Depose
RP Assistant (CityRP)
Posts: 1,050
Threads: 79
Likes Given: 747
Likes Recieved: 1365 in 536 posts
Joined: Aug 2015
Reputation: 12
#6
Apr 5, 2021, 03:51 PM
Ngl fire extinguishers are dumb let us use hoses
[Image: e2383c4b9c0b468c036343bcb016445a.gif]

[Image: dae6afafc7acf1d8463545c4bd530ec1.png]
The following 2 users Like Judge Rage's post:
  • Taylor, X_MAXXX_X
Doctor Internet radio_button_checked
Management, Developer, Administrator, Business Adviser, DPO, Security
Core Manager
Posts: 12,556
Threads: 1,763
Likes Given: 425
Likes Recieved: 3473 in 1670 posts
Joined: Aug 2015
Reputation: 35
#7
Apr 8, 2021, 12:38 PM
Pushing for Staff Review.

#type:[review]
For Data Protection Queries, please email info@limelightgaming.net.
For Business, Contributor or Development queries, please PM me.
For Appeals, please post in the relevant subforum.
For Security Information, your best bet is to speak to Burnett.
Doctor Internet radio_button_checked
Management, Developer, Administrator, Business Adviser, DPO, Security
Core Manager
Posts: 12,556
Threads: 1,763
Likes Given: 425
Likes Recieved: 3473 in 1670 posts
Joined: Aug 2015
Reputation: 35
#8
Apr 11, 2021, 04:25 PM
Approved.
For Data Protection Queries, please email info@limelightgaming.net.
For Business, Contributor or Development queries, please PM me.
For Appeals, please post in the relevant subforum.
For Security Information, your best bet is to speak to Burnett.
Doctor Internet radio_button_checked
Management, Developer, Administrator, Business Adviser, DPO, Security
Core Manager
Posts: 12,556
Threads: 1,763
Likes Given: 425
Likes Recieved: 3473 in 1670 posts
Joined: Aug 2015
Reputation: 35
#9
Apr 11, 2021, 05:32 PM
Completed in Revision 03ff7b6.
For Data Protection Queries, please email info@limelightgaming.net.
For Business, Contributor or Development queries, please PM me.
For Appeals, please post in the relevant subforum.
For Security Information, your best bet is to speak to Burnett.
Closed 




Users browsing this thread: