Difference between revisions of "User:Zesty"

From RimWorld Wiki
Jump to navigation Jump to search
m (Updated my profile with forums contact info.)
(testing something odd)
 
(58 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Minor RimWorld modder and RimWorld wiki assistant.
+
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 [https://steamcommunity.com/id/Divaya Steam]or on the [https://ludeon.com/forums/index.php?action=profile;u=7108 Ludeon forums].
+
If you need to reach me, you can do so via [https://discordapp.com/invite/UTaMDWc The RimWorld Discord] (@Zesty / CawsForConcern#0605) or on my [https://rimworldwiki.com/wiki/User_talk:Zesty User Talk Page].
  
==Modding==
+
{{key|S}}, {{key|↓}}
*Better Guns: http://ludeon.com/forums/index.php?topic=5193.0
 
  
==Sandbox==
 
Testing area for stuff. Please don't touch it.
 
  
This thing costs {{icon|silver|60}}<nowiki/> silver
+
== Test Zone ==
  
This thing takes {{ticks|40}}<nowiki/> Test
 
  
<onlyinclude>
+
Taking a look at syntax highlighting always citing it has errors
{{infobox main|weapon|
+
 
|name = Lee-Enfield
+
‎<syntaxhighlight lang="python" line>
|image = LeeEnfield.png|Lee Enfield
+
def quick_sort(arr):
|info = "Ancient bolt-action rifle. '''Probably pulled from a basement somewhere.''' '''Good range, good power, low rate of fire."'''
+
less = []
|type = Equipment{{!}}Equipment
+
pivot_list = []
|type2 = Weapons{{!}}Weapons
+
more = []
|placeable = Yes
+
if len(arr) <= 1:
|class = Modern
+
return arr
|damage = 18
+
else:
|range = 37
+
pass
|warmup = 182
+
</syntaxhighlight>
|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 03:44, 3 May 2023

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 The RimWorld Discord (@Zesty / CawsForConcern#0605) or on my User Talk Page.

S,


Test Zone[edit]

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
‎