Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
m (→‎Sandbox: Test stuff)
(contact info updated)
 
(75 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Author of the "Better Guns" mod.
+
I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.
  
If you need to reach me, you can do so via Steam: http://steamcommunity.com/id/ZestyLemons/
+
The best place to reach me is with an @ message via [https://discordapp.com/invite/UTaMDWc The RimWorld Discord] (@cawsforconcern), or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
  
==Contributions==
 
*[[Health]] initial write-up.
 
*[[Clothing Layers]] initial write-up.
 
*[[Pain]] initial write-up.
 
*[[Injury]] initial write-up.
 
*Tidying up various articles.
 
*[[DPS]] infobox formula.
 
  
==Modding==
+
== Test Zone ==
*Better Guns: http://ludeon.com/forums/index.php?topic=5193.0
+
{{key|S}}, {{key|↓}}
  
==Sandbox==
+
Taking a look at syntax highlighting always citing it has errors
Testing area for stuff. Please don't touch it.
 
  
Pistol warmup = 68, cooldown = 40
+
‎<syntaxhighlight lang="python" line>
 
+
def quick_sort(arr):
68 ticks divided by 60 seconds = {{ #expr: (68/60)round2 }} seconds of warm-up
+
less = []
 
+
pivot_list = []
40 ticks divided by 60 seconds = {{ #expr: (40/60)round2 }} seconds of cooldown
+
more = []
 
+
if len(arr) <= 1:
{{math|big=1|DPS {{=}} (Damage &times; Burst Count &times; Blast Radius) &divide; { [Cooldown + Warmup + (Burst Ticks &times; (Burst Count - 1)] &divide; 60 ticks per second } }}
+
return arr
 
+
else:
 
+
pass
DPS = {{ #expr: 10 / ((40 + 68 + (0 * 0))/60) }}
+
</syntaxhighlight>
 
 
<onlyinclude>
 
{{infobox main|weapon|
 
|name = Lee-Enfield
 
|image = LeeEnfield.png|Lee Enfield
 
|info = "Ancient bolt-action rifle. '''Probably pulled from a basement somewhere.''' '''Good range, good power, low rate of fire."'''
 
|type = Equipment{{!}}Equipment
 
|type2 = Weapons{{!}}Weapons
 
|placeable = Yes
 
|class = Modern
 
|damage = 18
 
|range = 37
 
|warmup = 182
 
|cooldown = 40
 
|accuracy = 96%-96%-92%-88%
 
|mode = Single-Shot
 
|velocity = 70
 
|burst = 1
 
|missRadius = -
 
|DPS = 5.14
 
|Cost = 190
 
}}
 
</onlyinclude>
 

Latest revision as of 22:43, 30 April 2024

I'm the RimWorld Wiki assistant admin. Message me if you've got questions or things break.

The best place to reach me is with an @ message via The RimWorld Discord (@cawsforconcern), or on my User Talk Page.


Test Zone[edit]

S,

Taking a look at syntax highlighting always citing it has errors

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
‎