Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.


Warning for game developers: PCGamingWiki staff members will only ever reach out to you using the official press@pcgamingwiki.com mail address.
Be aware of scammers claiming to be representatives or affiliates of PCGamingWiki who promise a PCGW page for a game key.

Difference between revisions of "Template:Fixbox/Documentation"

From PCGamingWiki, the wiki about fixing PC games
m (various changes + added one-line fixbox)
m (further refinement)
Line 1: Line 1:
 +
'''Example'''
 +
{{ii}} Taken from [[Full Spectrum Warrior]]
 +
 +
{{Fixbox|description=Modifying the FSW.dll file|ref=<ref>http://forums.steampowered.com/forums/showthread.php?t=1202822</ref>|fix=
 +
{{ii}} Before editing, make a backup of the <code>FSW.dll</code> file in case the modifications go wrong.
 +
# Go to <code>{{p|game}}</code>.
 +
# Open the <code>FSW.dll</code> file with Notepad or other text editor.
 +
# Using the Find function ({{key|Ctrl|F}}), search for "%s.available.gamespy.com". There will be exactly one entry.
 +
# Replace the text with "www.example.com/fixes/%s" (or any other working link that is the same length as the original and contains "%s" somewhere. This particular link is guaranteed to work.)
 +
# Save the file.
 +
# Launch the game.
 +
}}
 +
 +
 
'''Description'''
 
'''Description'''
  
Line 7: Line 21:
 
** <code>#</code> allows numbered lists to be dynamic.
 
** <code>#</code> allows numbered lists to be dynamic.
 
** Ex. If new entries are placed in the middle of a list, the old entries are automatically re-numbered.
 
** Ex. If new entries are placed in the middle of a list, the old entries are automatically re-numbered.
 +
* If the title alone is enough to summarize, the {{Code|fix}} parameter can be omitted, see the below one-line fixbox syntax.
  
  
Line 24: Line 39:
 
'''One-line fixbox'''
 
'''One-line fixbox'''
  
For a short one-line fixbox where instructions are not necessary, the {{Code|fix}} parameter can be excluded entirely:
+
For a short one-line fixbox where instructions are not necessary, the {{Code|fix}} parameter can be omitted entirely:
  
 
{{Fixbox|description=Use windowed mode, see [[#Video|Video]].|ref=<ref>Reference</ref>}}
 
{{Fixbox|description=Use windowed mode, see [[#Video|Video]].|ref=<ref>Reference</ref>}}

Revision as of 19:20, 14 August 2022

Example

Taken from Full Spectrum Warrior
Modifying the FSW.dll file[1]
Before editing, make a backup of the FSW.dll file in case the modifications go wrong.
  1. Go to <path-to-game>.
  2. Open the FSW.dll file with Notepad or other text editor.
  3. Using the Find function (Ctrl+F), search for "%s.available.gamespy.com". There will be exactly one entry.
  4. Replace the text with "www.example.com/fixes/%s" (or any other working link that is the same length as the original and contains "%s" somewhere. This particular link is guaranteed to work.)
  5. Save the file.
  6. Launch the game.


Description

The Fixbox is a specialized container used exclusively for fixes, workarounds, and step-by-step instructions. It provides a formal base for them, as well as keeping the wiki clean.

  • The title need to summarize what the fix/workaround is trying to accomplish.
  • For sequenced instructions, use # to label each step.
    • # allows numbered lists to be dynamic.
    • Ex. If new entries are placed in the middle of a list, the old entries are automatically re-numbered.
  • If the title alone is enough to summarize, the fix parameter can be omitted, see the below one-line fixbox syntax.


Standard fixbox

Name[2]

--instructions go here--

{{Fixbox|description=Name|ref=<ref>Reference</ref>|fix=
--instructions go here--
}}


One-line fixbox

For a short one-line fixbox where instructions are not necessary, the fix parameter can be omitted entirely:

Use windowed mode, see Video.[3]
{{Fixbox|description=Use windowed mode, see [[#Video|Video]].|ref=<ref>Reference</ref>}}


Collapsed fixbox

Add |collapsed=yes to the template to have the fixbox appear as collapsed and require user input to expand.

Name[4]

--instructions go here--

{{Fixbox|description=Name|ref=<ref>Reference</ref>|collapsed=yes|fix=
--instructions go here--
}}


References