Difference between revisions of "All-Match Augmented Bow Tie"

From Anarchy Online Wiki [AOWiki]
 
(22 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<css><!--
+
The [[AUNO:156540:80|All-Match Augmented Bow Tie]] is a fine buffing item to tradeskills, with low psychology requirements but a level requirement equal to its QL.  
.gross {font-size:36px;}
 
div.tradeskill TD {text-align:center;padding: 0px 5px 0px 5px;background:#efefef;border-left: 1px solid gray;border-top: 1px solid gray;}
 
div.tradeskill TABLE {border-right: 1px solid gray;border-bottom: 1px solid gray;}
 
div.info1 TABLE { border-collapse:collapse;background:#CAE0E6;border-left: 1px solid gray;border-top: 1px solid gray;border-right: 1px solid gray;border-bottom: 1px solid gray;empty-cells:hide; }
 
div.info1 TD { border-collapse:collapse;padding: 5px 5px 5px 5px;empty-cells:hide; }
 
div.none TD { border-collapse:collapse;background:#FFFFFF;padding: 3px 3px 3px 3px;empty-cells:hide;font-size: 90%; }
 
--></css>
 
  
 +
Although the extraction of personal information is required to make it, which almost all other tradeskills makes resulting items impossible to wear by any other person, in this particular case the tie can be traded back and forth and used by anyone. Such an item of apparel might seem to be more appealing for Bureaucrats, as the Psychology requirements do make it easier for Bureaucrats to make it and wear it, but it can in fact be worn by any profession that meets the requirements.
 +
 +
+12 to Mechanical engineering, Electrical engineering, Quantum physics, Weapon smithing, Pharmaceuticals, Nano programming and Chemistry at QL 77 (the maximum bonus, although the QL can be up to 80). +4 even at the lowly QL 20. [[Breakpoints]] are QL: 24, 32, 39, 47, 54, 62, 69, and 77 (7.5 QL rounded up, starting at QL 24).{{Tradeskills_css}}
  
 
== Required Skills ==
 
== Required Skills ==
* Psychology (Psy)
+
* [[Trade_and_Repair#Breaking_and_Entering|Breaking and Entering]] (B&E)
* Unknown (?)
+
* [[Combat_and_Healing#Psychology|Psychology]] (Psy)
  
  
 
== Required Items and Tools ==
 
== Required Items and Tools ==
 +
 
<div class="tradeskill">
 
<div class="tradeskill">
 
{| Cellspacing=0 align=center
 
{| Cellspacing=0 align=center
 
| '''Component''' || '''*1''' || '''Location''' || '''min. QL'''  
 
| '''Component''' || '''*1''' || '''Location''' || '''min. QL'''  
 +
|- BGCOLOR="#a87093"
 +
| [https://aoitems.com/item/156332 Sealed Order FPGA-202]|| C || [[Biomare - Lab Director]] || 20-80
 
|-  
 
|-  
| Sealed Order Form FPGA-202 || C || [[Biomare]] || 20-80
+
| Multi-Form || C ||  Shop-Entrance section<br>-Bookstore || 1
|-
 
| Multi-Form || C ||  Shop Buy<br>Bookstore || 1
 
 
|-
 
|-
| Expendable Hologram Camera || C || Shop Buy || 1  
+
| Expendable Hologram Camera || C || Shop-Trade Section<br>-General Tools & Bases or <br>-General Components || 1  
 
|-  
 
|-  
| Hacker Tool || R || Shop Buy<br>Tools || 80%
+
| [https://aoitems.com/item/87814 Hacker Tool] || R || Shop-Entrance section<br>-Tools || 72
 
|-  
 
|-  
| ID Extractor || R || Shop Buy || 1
+
| ID Extractor || R || Shop-Trade Section<br>-General Tools & Bases || 1
 
|}
 
|}
 
</div>
 
</div>
<center><small>*1 R = reuseable, C = consumed</small></center>
+
<center>*1 R = reusable, C = consumed</center>
 +
 
 +
==Requirements Calculator ==
 +
 
 +
<html>
 +
<script language=JavaScript>
 +
function calc() {
 +
 
 +
orderql = document.formcalc.orderql.value;
 +
if( orderql > 80 ) orderql=80;
 +
if( orderql < 20 ) orderql=20;
 +
document.formcalc.orderql.value = orderql;
 +
 
 +
hackerminql =  Math.round(orderql * .9);
 +
reqbe = Math.round(orderql * 3);
 +
reqpsy = Math.round(orderql * 3.75);
 +
 
 +
var x=document.getElementById('calctable').rows[1].cells;
 +
x[1].innerHTML=hackerminql;
 +
var x=document.getElementById('calctable').rows[3].cells;
 +
x[1].innerHTML=reqbe;
 +
  var x=document.getElementById('calctable').rows[4].cells;
 +
x[1].innerHTML=reqpsy;
 +
}
 +
 
 +
function resetcalc() {
 +
 
 +
document.formcalc.orderql.value = '';
 +
 
 +
var x=document.getElementById('calctable').rows[1].cells;
 +
x[1].innerHTML='';
 +
var x=document.getElementById('calctable').rows[3].cells;
 +
x[1].innerHTML='';
 +
  var x=document.getElementById('calctable').rows[4].cells;
 +
x[1].innerHTML='';
 +
}
 +
</script>
 +
 
 +
<form name="formcalc">
 +
<table class="none" id="calctable" align="center" border="0">
 +
<tr>
 +
<td>Sealed Order FPGA-202 </td>
 +
<td>
 +
  <input name=orderql type=text size=3 onblur=calc() onchange=calc()>
 +
 
 +
</td>
 +
  <td>Range from 20 to 80</td>
 +
 
 +
  </form>
 +
</tr>
 +
<tr>
 +
<td>Hacker Tool QL (min.):</td>
 +
<td></td>
 +
</tr>
 +
<tr>
 +
<td colspan=2><b>Skill Requirements</b></td>
 +
</tr>
 +
<tr>
 +
<td>Breaking & Entering (min.):</td>
 +
<td></td>
 +
</tr>
 +
<tr>
 +
<td>Psychology (min.):</td>
 +
<td></td>
 +
</tr>
 +
<tr>
 +
  <td><input type="button" value="Calculate" onclick=calc() ></td>
 +
  <td><input type="button" value="Reset" onclick=resetcalc() ></td>
 +
</tr> 
 +
</table>
 +
</html>
  
 
== Tradeskill Process ==
 
== Tradeskill Process ==
The combination of items in Anarchy Online works as follows:
+
{{Tradeskills_preamble}}
 
 
Open the tradeskill window (Ctrl-t). Here you can place the two items you want to combine in the left and middle part. The resulting Item will be shown in the right area. Missing skills, or non possible combinations will be shown below. A detailed look on the resulting item is possible with a simple shift-left-click on it. It is recommended to have free inventory space before combining items, else the item will end in the overflow window.
 
  
 
<div class="tradeskill">
 
<div class="tradeskill">
 
{| cellspacing="0" align="center"
 
{| cellspacing="0" align="center"
| <aoicon>87814</aoicon>
+
| <aodb>87814</aodb>
 
|rowspan=2| <span class=gross>+</span>
 
|rowspan=2| <span class=gross>+</span>
| <aoicon>156332</aoicon>   
+
| <aodb>156332</aodb>   
 
|rowspan=2| <span class=gross>=</span>
 
|rowspan=2| <span class=gross>=</span>
| <aoicon>156338</aoicon>
+
| <aodb>156338</aodb>
| Skills: ?
+
| Skills: B&E
 
|-
 
|-
| Hacker Tool
+
| [[AUNO:87814|Hacker Tool]]
| Sealed Order FPGA-202
+
| [[AUNO:156332|Sealed Order FPGA-202]]
 
| Hacked Order FPGA-202
 
| Hacked Order FPGA-202
| ?
+
| 3 x QL
 
|-
 
|-
| <aoicon>156339</aoicon>
+
| <aodb>156339</aodb>
 
|rowspan=2| <span class=gross>+</span>
 
|rowspan=2| <span class=gross>+</span>
| <aoicon>156054</aoicon>   
+
| <aodb>156054</aodb>   
 
|rowspan=2| <span class=gross>=</span>
 
|rowspan=2| <span class=gross>=</span>
| <aoicon>156340</aoicon>
+
| <aodb>156340</aodb>
| Skills: ?
+
| Skills: Psy
 
|-
 
|-
 
| ID-extractor
 
| ID-extractor
 
| Expendable Hologram Camera
 
| Expendable Hologram Camera
| ID-data
+
| ID-data [NODROP]
| ?
+
| 20
 
|-
 
|-
| <aoicon>156340</aoicon>
+
| <aodb>156340</aodb>
 
|rowspan=2| <span class=gross>+</span>
 
|rowspan=2| <span class=gross>+</span>
| <aoicon>156338</aoicon>   
+
| <aodb>156338</aodb>   
 
|rowspan=2| <span class=gross>=</span>
 
|rowspan=2| <span class=gross>=</span>
| <aoicon>156354</aoicon>
+
| <aodb>156354</aodb>
| Skills: ?
+
| Skills: Psy
 
|-
 
|-
| ID-data
+
| ID-data [NODROP]
 
| Hacked Order FPGA-202
 
| Hacked Order FPGA-202
| Personal Order FPGA-202
+
| Personal Order FPGA-202<br>[NODROP]
| ?
+
| 2.5 x QL
 
|-
 
|-
| <aoicon>156345</aoicon>
+
| <aodb>156345</aodb>
 
|rowspan=2| <span class=gross>+</span>
 
|rowspan=2| <span class=gross>+</span>
| <aoicon>156354</aoicon>   
+
| <aodb>156354</aodb>   
 
|rowspan=2| <span class=gross>=</span>
 
|rowspan=2| <span class=gross>=</span>
| <aoicon>156540</aoicon>
+
| <aodb>156540</aodb>
| Skills: ?
+
| Skills: Psy
 
|-
 
|-
 
| Multi-Form
 
| Multi-Form
| Personal Order FPGA-202
+
| Personal Order FPGA-202<br>[NODROP]
 
| All-Match Augmented Bow Tie
 
| All-Match Augmented Bow Tie
| ?
+
| 3.75 x QL
 
|}
 
|}
 
</div>
 
</div>
  
 +
==See Also==
 +
* [[Biomare]]
 +
* [[Repairmans Hat]]
 +
* [[Cratsuit]]
 +
* [[Biomare - Collar of Amplification Quest#Kill the Director Mission|Kill the Director Mission]] section of 'Biomare - Collar of Amplification Quest''
  
 
----
 
----
 
--[[User:Berael|Berael]] 20:27, 8 August 2007 (PDT)
 
--[[User:Berael|Berael]] 20:27, 8 August 2007 (PDT)
[[Category:Tradeskills]]
+
[[Category:Tradeskills]][[Category:Breaking and Entering Tradeskills]][[Category: Psychology Tradeskills]]
 
[[Category:Classic]]
 
[[Category:Classic]]
 +
[[Category:Armor]]

Latest revision as of 21:46, 18 April 2022

The All-Match Augmented Bow Tie is a fine buffing item to tradeskills, with low psychology requirements but a level requirement equal to its QL.

Although the extraction of personal information is required to make it, which almost all other tradeskills makes resulting items impossible to wear by any other person, in this particular case the tie can be traded back and forth and used by anyone. Such an item of apparel might seem to be more appealing for Bureaucrats, as the Psychology requirements do make it easier for Bureaucrats to make it and wear it, but it can in fact be worn by any profession that meets the requirements.

+12 to Mechanical engineering, Electrical engineering, Quantum physics, Weapon smithing, Pharmaceuticals, Nano programming and Chemistry at QL 77 (the maximum bonus, although the QL can be up to 80). +4 even at the lowly QL 20. Breakpoints are QL: 24, 32, 39, 47, 54, 62, 69, and 77 (7.5 QL rounded up, starting at QL 24).

Required Skills[edit]


Required Items and Tools[edit]

Component *1 Location min. QL
Sealed Order FPGA-202 C Biomare - Lab Director 20-80
Multi-Form C Shop-Entrance section
-Bookstore
1
Expendable Hologram Camera C Shop-Trade Section
-General Tools & Bases or
-General Components
1
Hacker Tool R Shop-Entrance section
-Tools
72
ID Extractor R Shop-Trade Section
-General Tools & Bases
1
*1 R = reusable, C = consumed

Requirements Calculator[edit]

Sealed Order FPGA-202 Range from 20 to 80
Hacker Tool QL (min.):
Skill Requirements
Breaking & Entering (min.):
Psychology (min.):

Tradeskill Process[edit]

The combination of items in Anarchy Online works as follows:

Open the tradeskill window (Shift + T). Here you can place the two items you want to combine in the left and middle part. The resulting Item will be shown in the right area. Missing skills, or non possible combinations will be shown below. A detailed look on the resulting item is possible with a simple shift-left-click on it. It is recommended to have free inventory space before combining items, else the item will end in the overflow window.

Advanced Hacker Tool + Sealed Order FPGA-202 = Hacked Order FPGA-202 Skills: B&E
Hacker Tool Sealed Order FPGA-202 Hacked Order FPGA-202 3 x QL
ID-extractor + Expendable Hologram Camera = ID-data Skills: Psy
ID-extractor Expendable Hologram Camera ID-data [NODROP] 20
ID-data + Hacked Order FPGA-202 = Personal Order FPGA-202 Skills: Psy
ID-data [NODROP] Hacked Order FPGA-202 Personal Order FPGA-202
[NODROP]
2.5 x QL
Multi-Form + Personal Order FPGA-202 = All-Match Augmented Bow Tie Skills: Psy
Multi-Form Personal Order FPGA-202
[NODROP]
All-Match Augmented Bow Tie 3.75 x QL

See Also[edit]


--Berael 20:27, 8 August 2007 (PDT)