A little question.

Join Discord

Draka

Dedicated Member
Dedicated Member
Jan 22, 2008
72
0
53
Hi everyone well my question is: is posible learn a magic for npc comand, well in other words, exist some comands to learn magics, dont'n use manual book.
 

mapadale

Guest
Hi everyone well my question is: is posible learn a magic for npc comand, well in other words, exist some comands to learn magics, dont'n use manual book.
Yes you can learn magic from an NPC see below:

Code:
#IF
checkjob warrior
#ACT
goto @ADDWARRIORMAGIC
break
#IF
checkjob wizard
#ACT
goto @ADDWizardMAGIC
#ELSEACT
goto @ADDTAOISTMAGIC

[@ADDWARRIORMAGIC]
#IF
checklevel 0
#ACT
mov D0 %P9

#IF
EQUAL D0 7
#ACT
Actcmd ADDMAGIC "BOOKNAME" 0

#IF
EQUAL D0 14
#ACT
Actcmd ADDMAGIC "BOOKNAME" 0
You do this for all the manuals that you want them to learn.
This command: EQUAL D0 14 -This is the level of the book, so you add these lines for each book you want.
 
Last edited:
Upvote 0