Limelight Forums
CityRP Remove FF resupply timer - Printable Version

+- Limelight Forums (https://limelightgaming.net/forums)
+-- Forum: Feedback (https://limelightgaming.net/forums/forum-612.html)
+--- Forum: Suggestions (https://limelightgaming.net/forums/forum-239.html)
+---- Forum: Finished (https://limelightgaming.net/forums/forum-242.html)
+---- Thread: CityRP Remove FF resupply timer (/thread-28441.html)



Remove FF resupply timer - Taylor - Apr 3, 2021

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.


RE: Remove FF resupply timer - Limelight Gaming - Apr 3, 2021

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.


RE: Remove FF resupply timer - Mr.Sir - Apr 3, 2021

Yes gamer


RE: Remove FF resupply timer - Doctor Internet - Apr 4, 2021

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}



RE: Remove FF resupply timer - Taylor - Apr 4, 2021

(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)


RE: Remove FF resupply timer - Judge Rage - Apr 5, 2021

Ngl fire extinguishers are dumb let us use hoses


Remove FF resupply timer - Doctor Internet - Apr 8, 2021

Pushing for Staff Review.

#type:[review]


Remove FF resupply timer - Doctor Internet - Apr 11, 2021

Approved.


RE: Remove FF resupply timer - Doctor Internet - Apr 11, 2021

Completed in Revision 03ff7b6.