Jump to content

Brian

Members
  • Posts

    2223
  • Joined

  • Last visited

  • Days Won

    24

Posts posted by Brian

  1. I'll do it!

    haha I remember at the time I didn't think this would be useful ... but I guess it is!

     

    hello...i meet some problem in make a rental item....can u teach me?

    i wan to make a +10 formal suit for 30days with a ghostring card...how to do that?

    Currently there is only a 'rentitem' script command.

    You would need 'rentitem2' (similar to getitem2) to specify refine rate and cards.

    or maybe you could use 'rentitem', then @kick them and modify the item in SQL...

    • Upvote 1
  2. MD_ASSIST is probably what you are looking for.

    If you look at the mode for Thief Bug Male (1054):

    - Aggressive

    - Assist

    - Detector

    - Change Target (Attack)

    - Change Target (Chase)

    Then looking at the documentation: doc/mob_db_mode_list.txt

    MD_AGGRESSIVE | 0x0004 | 4

    MD_ASSIST | 0x0008 | 8

    MD_DETECTOR | 0x0100 | 256

    MD_CHANGETARGET_MELEE | 0x1000 | 4096

    MD_CHANGETARGET_CHASE | 0x2000 | 8192

     

    Aggressive: normal aggressive mob, will look for a close-by player to attack.

    Assist: When a nearby mob of the same class attacks, assist types will join them.

    Detector: Enables mob to detect and attack characters who are in hiding/cloak.

    Change Target Melee: Enables a mob to switch targets when attacked while

    attacking someone else.

    Change Target Chase: Enables a mob to switch targets when attacked while

    chasing another character.

  3. You may only be able to do this after you've left the Limited Members group though.

     

    After 1 post (in a non-off topic section), you will be moved from "Limited Members" to Members. Then you can edit your signature, photo, and other profile info.

  4. The half-half username style would be hard to implement.

    I agree with Emistry. I don't think a separate Paid Service group will add much benefit. Right now if you want to look for a paid service, most users just go to the Paid Services forum.

    While posting or replying, they may promote its paid service:

    When participating in the community, thei will have a greater chance of show its paid services.

    Currently, most members who offer paid services have some text and/or image in their signature. I think that is more effective than a group name.
  5. To clarify:

    day 1 = earn 10 coins

    day 2 = 12 coins

    day 3 = 14 coins

    day 4 = (oops forgot to collect rewards) 0 coins

    day 5 = start at 10 coins again?

    And if they collected coins every day from Dec1 - Dec25, then on Dec 25 they would be collecting 58 coins right? for a maximum total of 850 coins? (if they collected all 15 days)

  6. You can run as many VPS as you want, as long as they are properly configured (most importantly: different IP addresses). How did you create the new VPS --

    did you just clone the VPS as-is, or did you create a new VPS and set everything up?

    When you say "the old one turns off" -- does the VPS actually shutdown?

    or do you just lose network connectivity?

  7. The default behavior is start point AND save point are set to this config:

    // Starting point for new characters
    // Format: <map_name>,<x>,<y>
    start_point: new_1-1,53,111

    create character

    after character select if first time login it will warp automatically to poring map and after they kill some porings they can go back to there savepoint so they save point will still be

     

    // Start point, Map name followed by coordinates (x,y)

    start_point: prontera,151,179

    Just to clarify: you want new chars to start in one place (poring map), but save point to be prontera,151,179 ?

    Using savepoint like Emistry suggested, this is what you would do:

    1. set the start_point config in conf/char_athena.conf#L99 to the Poring map

    start_point: prt_fild00,150,150
    2. create a script that triggers when they login for the first time

    (the script will set their save point to prontera,151,179

    Here is an example:

    prt_fild00,150,150,0	script	Change_Save	139,1,1,{
    OnTouch:
    	if (Class==Job_Novice && BaseExp==0 && BaseLevel==1) {
    		savepoint "prontera",151,179;
    		set BaseExp,1; // (no need to create a new variable)
    	}
    	end;
    }
    • Upvote 1
  8. client 2011-04-02 was supported by harmony i need harmony to decrypt the exe then diff it

    You need a 2011-04-02 Harmony client so you can diff it?

    If you are the server owner who purchased Harmony, you should have received all necessary client-side files from Sirius White, including compatible Harmony client(s) that you can apply diff patches to.

    Or do you play on that server? (VanRO)

×
×
  • Create New...