Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

(EO) command for Shops


dustdragon
 Share

Recommended Posts

i asked in another post about this but i need abit more help if possible

i have never used VB6 before im still getting used to it i have looked into all the files and got even more confused lol

im looking for help with setting up a command line like */shop,/open…* wile a shop keeper is selected to open the shop its assigned 

my idea of this was to link a shop into the shopkeeper and to toggle the shopkeeper with the command to open the shop

now that sounded kind of easy till i opened the files lol 

what i need is what files do i need to edit eg. what file has the shopkeeper in and what file has the command lines in so i can mess around till i get it to work >.<
Link to comment
Share on other sites

i have VB6 installed and as i sead in my first post if u ever read … i have never used VB before so im 100% new to this i have friends that know abit of vb as thay used to code in it before going to c++

all i wanted was abit of help not for some one todo the work for me

as in what files do i need to look in and were abouts in them ??
is it server side or cliant side this sorta thing ...
Link to comment
Share on other sites

```
Private Sub ShopScroll_Change()
  ' If debug mode, handle error then exit out
    If Options.Debug = 1 Then On Error GoTo errorhandler

    lblshopnum.Caption = "Num: " & scrlNum.Value

    If scrlNum.Value > 0 Then
        lblshopnum.Caption = "num: " & Trim$(shop(scrlNum.Value).Name)
    End If

    ' Error handler
    Exit Sub
errorhandler:
    HandleError "scrlNum_Change", "frmEditor_NPC", Err.Number, Err.Description, Err.Source, Err.HelpContext
    Err.Clear
    Exit Sub
End Sub

```
i cant find the command to open the shop
let alone adding a code to activate that >.<
ane help would be nice
Link to comment
Share on other sites

I am new too in the visual basic things, I learned a lot from doing source tutorials here:
[http://www.touchofdeathforums.com/smf/index.php/board,498.0.html](http://www.touchofdeathforums.com/smf/index.php/board,498.0.html)
Take some easy tutorials, and make them, every done tutorial will teach u a lot ^^
I listed some tutorials for u, I ve done, and learned a lot from them…
[http://www.touchofdeathforums.com/smf/index.php/topic,68596.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,68596.0.html) WASD movement
[http://www.touchofdeathforums.com/smf/index.php/topic,70436.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,70436.0.html) Player noclip
[http://www.touchofdeathforums.com/smf/index.php/topic,70525.msg758612.html](http://www.touchofdeathforums.com/smf/index.php/topic,70525.msg758612.html) lvl requ for cutting trees or recoerses
[http://www.touchofdeathforums.com/smf/index.php/topic,70502.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,70502.0.html) Quest system
I am actually working on the quest system, i still cant figure it out.. But every time I try it, I get further with it :)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...