Guide: Tailoring

halygon

Grandmaster
Tailoring

Tailoring is a skill where you can use a sewing kit and cloth to make cloth Items and leather Items.

Once a player obtains GM they may "mark" any exceptional crafted item created with his/her name. Lady/Lord titles are included in the mark. Tailor's are also eligible for "Bulk Order Deliveries" or BOD's. See BOD wiki for more details.

TIP: Tailoring is one of the best money making skills of all the Crafting Skills - rare cloth and BOD's can sell for a fortune

Power Scrolls and Skill Scrolls are available for this skill.

Training Method
0 - 50 Train from NPC
45 - 55 cloaks
55 - 75 robes
75 - 99.6 oil cloths
99.6 - 100 studded tunics
100 - 120 studded tunics or Skill Scrolls.
 
Make sure that you're full up on food and drink, and also that you're not capped out on other skills, and that you haven't accidentally locked or pointed the arrow down on tailoring. I know that sounds stupid, but it happens.

I stopped gaining on robes at 74.5 real and switched to oil cloths at that point.
 

fdsah

New Member
Confirmed in July 2018r.

Started with Robes, oil clothes and finished with tunics.

My contribution are scripts I created to GM this skill:

If you seat like on the screen first script will change your piles of wool and bale of cotton to bolts of clothes:

krawiec.png


Script is:

if counttype 0xdf8 'any' 'backpack' > 0
usetype 0xdf8
waitfortarget 15000
target! 0x40007693
pause 1000
endif
if counttype 0xdf9 'any' 'backpack' > 0
usetype 0xdf9
waitfortarget 15000
target! 0x40007693
pause 1000
endif
if counttype 0xe1d 'any' 'backpack' > 0
usetype 0xe1d
waitfortarget 15000
target! 0x400076a9
endif
if counttype 0xfa0 'any' 'backpack' > 0
usetype 0xfa0
waitfortarget 15000
target! 0x400076a9
endif

To make tailor GM I used:

FOR ROBES:

if counttype 0x1766 'any' 'backpack' > 15
usetype 0xf9d
waitforgump 0x38920abd 15000
replygump 0x38920abd 21
pause 2000
endif
if counttype 0x1766 'any' 'backpack' < 15
usetype 0xf9f
waitfortarget 15000
targettype 0x1f03
pause 2000
endif
while weight > 380
usetype 0xf9f
waitfortarget 15000
targettype 0x1f03
pause 2000
endwhile

AND OIL CLOTHES:

if counttype 0x1766 'any' 'backpack' > 15
usetype 0xf9d
waitforgump 0x38920abd 15000
replygump 0x38920abd 21
pause 2000
endif
while weight > 380
usetype 0xf9f
waitfortarget 15000
targettype 0x175d
pause 2000
endwhile

Have a great time with tailoring GMing.
 
Top