Thread: Multiple Questions if Answered, +Rep.

Results 1 to 9 of 9
  1. #1 Multiple Questions if Answered, +Rep. 
    Furion Pk
    Guest
    Well, I have questions & requests, and they are:
    1. It's been a while since I came back to coding Java, and forgot lots of things, so I need to know how to change the shop prices for my shops, the rares are each 1gp.. >.>

    2. I searched, but couldn't find any case 131 (magic on NPCs) full already done, besides Mr. Brightsides' handler ofcourse that is..

    3. I'd like to protect the shop NPCs, and I remember reading a tutorial about that once, but once again, searched and couldn't find anything.

    4. I'd also like to fix the following (following other players), and I remember reading a tutorial about that once, but once again, searched and couldn't find anything.

    5. Can I make it so when you first join the server, you can load commands, like a starter command at join for first time, and a custimize character command(::char) & (:tarter).

    6. The NPCs don't face you when attacking, so I'd like to fix that..

    7. And last question: I know I saw a tutorial for full range with arrows, and after I searched I didn't find a thing. It'll be good if I had a link, or the guide.

    It'd be great if you guys would help, I need to fix these things before I host my server online. It's 317 by the way.

    Thanks, fixed everything. Thanks all!
    Reply With Quote  
     

  2. #2  
    Registered Member
    Range 2h's Avatar
    Join Date
    Jun 2007
    Posts
    437
    Thanks given
    1
    Thanks received
    14
    Rep Power
    254
    Not to sound harsh or anything, but you need to understand that not everything is supposed to be spoon-fed to you.

    I recommend reading some java books, watching lectures, or reading tutorials to understand how it works and make all of this yourself. It's much more rewarding than copying + pasting some random tutorial.
    Reply With Quote  
     

  3. #3  
    hmu

    Jakey's Avatar
    Join Date
    Sep 2007
    Age
    34
    Posts
    6,489
    Thanks given
    109
    Thanks received
    277
    Rep Power
    1218
    Alright well i suppose i can help with a few as i am currently not as busy.

    1. Shop.cfg or item.cfg
    5,6,7. Tutorial Section there are tons of tutorials on those.
    to contact me, PM me on rune-server.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Klorox's Avatar
    Join Date
    Sep 2007
    Posts
    1,090
    Thanks given
    2
    Thanks received
    11
    Rep Power
    700
    I recommend you just user a newer source.
    Reply With Quote  
     

  5. #5  
    #Flippergang

    Alberto's Avatar
    Join Date
    May 2008
    Posts
    756
    Thanks given
    46
    Thanks received
    40
    Rep Power
    121
    Quote Originally Posted by klorox View Post
    I recommend you just user a newer source.
    I recommend the same. You must be using a very old base. To start you might wana try deltascape based server. But as you learn more about java please use a different source.

    Good luck in future
    Hopes and Dreams
    Need something programmed and willing to pay?
    Pm me.
    Reply With Quote  
     

  6. #6  
    Furion Pk
    Guest
    Quote Originally Posted by Range 2h View Post
    Not to sound harsh or anything, but you need to understand that not everything is supposed to be spoon-fed to you.

    I recommend reading some java books, watching lectures, or reading tutorials to understand how it works and make all of this yourself. It's much more rewarding than copying + pasting some random tutorial.
    Yeah, will do.

    I seriously don't want a new source, I edited every single thing from antilag to stream, I edited like 90% of this server.. and starting from new would be really tough..
    It'd be great if anyone'd help..
    Reply With Quote  
     

  7. #7  
    Furion Pk
    Guest
    Anyone help?
    Reply With Quote  
     

  8. #8  
    Apple Computers
    Bridget7298's Avatar
    Join Date
    Aug 2007
    Age
    32
    Posts
    1,088
    Thanks given
    99
    Thanks received
    49
    Rep Power
    219
    For your problem with a :tarter, I'm not 100% sure but I believe do something like this:

    Declare this:
    Code:
    Public static Boolean starterpack = false;
    Then add a tokenizer to your char save.

    Add a command something similar to this:
    Code:
    if(command.equalsIgnoreCase("starter"))
    {
    addItem(995,500000) <-- change to what you want..
    }
    else if(command.equalsIgnoreCase("starter") && (starterpack == true))
    {
    sendMessage("You have already used up your started pack.");
    }
    }
    I'm not at home at the moment so I couldn't remember how to spell the command thing but anyway yes, something similar to that.

    ---------- Post added at 04:31 PM ---------- Previous post was at 04:28 PM ----------

    Actually no... I thought of a different way to do this that is much more efficient, if you want help with that just PM me.
    Reply With Quote  
     

  9. #9  
    Furion Pk
    Guest
    Quote Originally Posted by ELMarshall View Post
    For your problem with a :tarter, I'm not 100% sure but I believe do something like this:

    Declare this:
    Code:
    Public static Boolean starterpack = false;
    Then add a tokenizer to your char save.

    Add a command something similar to this:
    Code:
    if(command.equalsIgnoreCase("starter"))
    {
    addItem(995,500000) <-- change to what you want..
    }
    else if(command.equalsIgnoreCase("starter") && (starterpack == true))
    {
    sendMessage("You have already used up your started pack.");
    }
    }
    I'm not at home at the moment so I couldn't remember how to spell the command thing but anyway yes, something similar to that.

    ---------- Post added at 04:31 PM ---------- Previous post was at 04:28 PM ----------

    Actually no... I thought of a different way to do this that is much more efficient, if you want help with that just PM me.
    Thanks, fixed. rep+
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •