Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Theif !

Experienced Elementalist
Joined
Sep 29, 2014
Messages
214
Reaction score
20
any one can release starter npc for all classes and the skills of the Theif pls ?
 
A.K.A /v\aX /--/ PHP Guru
Joined
Aug 29, 2007
Messages
822
Reaction score
211
Starter NPC is easy..

thief is class 3

Code:
;---------------------- [ STARTER NPC]	
(quest (index 9101 1)
	(case (if (clear 9101 1)) (then (html 30004)))
	(case (then (link 9101 2))))


(quest (index 9101 2) (linked 1)
	(case (if (clear 9101 1)) (then (html 30004)))
	;Knight
	(case (if (class 0)) (then (item (in 59 0 1) (in 49 0 1) (in 50 0 1) (in 51 0 1) (in 52 0 1) (in 53 0 1) (in 28 0 1)  ) (clear 9101 1) ))
	;Archer
	(case (if (Class 2)) (then (item (in 62 0 1) (in 54 0 1) (in 55 0 1) (in 56 0 1) (in 57 0 1) (in 58 0 1)  ) (clear 9101 1) ))
	;Mage
	(case (if (Class 1)) (then (item (in 95 0 1) (in 85 0 1) (in 86 0 1) (in 87 0 1) (in 88 0 1) (in 89 0 1)  ) (clear 9101 1) ))
	;Thief
	(case (if (Class 3)) (then (item (in 1409 0 1) (in 1565 0 1) (in 1566 0 1) (in 1567 0 1) (in 1568 0 1) (in 1569 0 1)  ) (clear 9101 1) ))
	(case (then ))
)

As for skills you need to buy a system or make your own DLL
 
Upvote 0
A.K.A /v\aX /--/ PHP Guru
Joined
Aug 29, 2007
Messages
822
Reaction score
211
what about e.pk ?
What about a thankyou or a like hit :?

geez.. dude im trying to help xD you cant make a .dat for e.pk???
file s030003.dat /// you may need to make this dat file
Code:
(filechk file_ver (country_type ENG)(filename s030003))
(background
    (font 12)
    (wrap 270)
    (link system ( param ( width 270)( height 280)( style title vscroll)( caption "Talk")( layout script    ) )


)
(link mainframe 
        
        ( param ( upleft "data\ui\info-menu-top left.bmp" ) 
        ( upcenter "data\ui\info-menu-top center.bmp" ) 
            ( upright "data\ui\info-menu-top right.bmp" )
            ( left "data\ui\info-menu-left.bmp" ) 
            ( right "data\ui\info-menu-right.bmp" )
            ( downleft "data\ui\info-menu-bottom left.bmp" ) 
            ( downcenter "data\ui\info-menu-bottom center.bmp" ) 
            ( downright "data\ui\info-menu-bottom right.bmp" )


            ( offset 0 0 0 -20 )
            ( titlebar 0 0 250 45 ( caption 30 -20 ) ( close 0 -15 ) )
            ( bg 10 10 -10 -25 )
        )
    )


    ( page
        ( pos 251 -39 )
 
    )




    
)


( frame ( font 12)


    ( line "[NPC]:")
    ( line " ")
    ( link ( text "Get Starter Pack!")( param send quest 9101 1 ))


    ( link close ( text "[Talk End]" ))
)
 
Upvote 0
Experienced Elementalist
Joined
Sep 29, 2014
Messages
214
Reaction score
20
im rly thx alot ... <3 sry i was afk bro .. im rly sry and Great thx for you .. you are nice man <3
 
Upvote 0
Back
Top