PDA

View Full Version : magical workshops in sorcerer guilds



Allereli
09-19-2012, 12:13 AM
http://forums.play.net/forums/GemStone%20IV/Sorcerers/Sorcerer%20Guild%20Discussions/view/331

Magical Workshops in Sorcerer Guilds on 09/18/2012 10:46 PM EDT

The magical workshops in most Sorcerer guilds (all except Zul Logoth and Ta'Vaalor) are now functioning as magical workshops such that they now will provide bonuses to appropriate spells, such as Scroll Infusion (714).

GameMaster Oscuro

>>Good add, team! One more standing ask closed and in good fashion. :) Quick question -- Zul and TV left out intentionally (because of nasty sorc feelings) or in process but delayed due to challenges?

None of the existing rooms were obvious candidates for magical workshops like the other guilds had. The town gurus have been notified and they may add a room to their guilds in the future.

GameMaster Oscuro

Kastrel
09-19-2012, 12:45 AM
At the very least, the Illistim Guild's workshop is the Necromancy Laboratory directly south of the entrance.

The Alchemy Workshops are definitely not.

Definitely cool for those hardcore scroll infusers.

Zen
10-17-2012, 10:48 PM
Dumb question - How do I enter the Sorcerer Guild in Ta'Illistim? Thanks!

Allereli
10-18-2012, 12:14 AM
# TIS_GUILD Script
# Created for Coven Libraries
# http://www.zone9.com
# 6/12/2006
#
# This script provides entry into
# the Sorcerer Guild in Ta'Illistum
#
put look
match Start [Gyldemar Road, Ruins]
match exit .
matchWait
exit:
echo ************************************************** *************************
echo You need to be at the pillars to use this script... [Gyldemar Road, Ruins]
echo ************************************************** *************************exit
exit
start:
setvariable myPil black
counter set 1
goto checkPil
start2:
setvariable myPil deep
counter set 2
goto checkPil
start3:
setvariable myPil dark
counter set 3
goto checkPil


checkPil:
put look %myPil pil
match 701 blood-drop sigil
match 702 a radiating circle sigil
match 703 a dark cloud sigil
match 704 hazy black sigil
match 705 slate grey sigil
match 717 a dark eye sigil
matchwait

701:
put prep 701
put cast at %myPil pil
pause 3
counter add 1
goto start%c
702:
put prep 702
put cast at %myPil pil
pause 3
counter add 1
goto start%c
703:
put prep 703
put cast at %myPil pil
pause 3
counter add 1
goto start%c
704:
put prep 704
put cast at %myPil pil
pause 3
counter add 1
goto start%c
705:
put prep 705
put cast at %myPil pil
pause 3
counter add 1
goto start%c
717:
put prep 717
put cast at %myPil pil
pause 3
counter add 1
goto start%c
labelerror:
exit

Zen
10-18-2012, 12:26 AM
Thanks!