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

MCADAMS

Members
  • Posts

    1013
  • Joined

  • Last visited

    Never

Posts posted by MCADAMS

  1. If you have a weapon equipped:
    ```
    GetPlayerDamage = 0.085 * 5 * GetPlayerStat(index, Strength) * Item(weaponNum).Data2 + (GetPlayerLevel(index) / 5)
    ```
    If you're unarmed
    ```
    GetPlayerDamage = 0.085 * 5 * GetPlayerStat(index, Strength) + (GetPlayerLevel(index) / 5)
    ```
    That's where Strength comes into play for damage, and you are able to tweak that however you like ;D
  2. They're used as variables in equations, where the name is simply a number (the level in the stat) and is part of an equation, such as the default health for Warriors:

    ```
    Case 1 ' Warrior
                        GetPlayerMaxVital = ((GetPlayerLevel(index) / 2) + (GetPlayerStat(index, Endurance) / 2)) * 15 + 150
    ```
    If the player was level 5, and their Endurance stat was 25;

    ```
    (5 / 2) + (25 / 2 ) x 15 + 150 = character hp
    ```
    and that's just the example for Endurance.

    Theres a similar code for Intelligence, resulting in default mana:
    ```
    Case 1 ' Warrior
                        GetPlayerMaxVital = ((GetPlayerLevel(index) / 2) + (GetPlayerStat(index, Intelligence) / 2)) * 5 + 25
    ```
  3. @Whackeddie99:

    > Will do Nick. Just finished Paperdolling a black sword and an axe xD
    >
    > Cant put them in the game yet, as Raiko is asleep and his computer is off (hes hosting the server using Hamachi)

    Nice, his timezone is tricky but I hope you guys can manage to work together still.
  4. @Whackeddie99:

    > thanks chucocide, I made it :D
    >
    > and also nice sprite may find somewhere to pop it in Nick ;)
    >
    > Just fixed the Paperdoll bug, where Helmets and Masks dont cover the top of peoples hair xD

    Thanks, like I said feel free to use it however you like, it's only one picture so it would work well as a quest giver who just stands there xD.

    Keep up the good work!
  5. Close the server you have open. If you're on Windows 7, click the tiny up arrow near the clock and double click the server and close it. Otherwise, double click the tray of icons in the right-hand corner of your taskbar and close the server.
  6. @Robin:

    > Not a fan of it. Doesn't match the other bars. Here's one I made:
    >
    > ![](http://img156.imageshack.us/img156/4418/spiritwe.jpg)

    Damn, I got graphically pwned. Then again it was my first time recoloring anything like that…but still.
    I'll be using yours if you don't mind  ;)
  7. Just incase some people prefer the classic red-HP-bar-blue-MP-bar combo, so here you go:
    Mine: ![](http://I.imgur.com/cyCZo.jpg)
    Robins: ![](http://I.imgur.com/8tfsd.jpg)

    Robin's blue party-interface bars:
    http://img269.imageshack.us/img269/2750/spirempty.jpg
    http://img137.imageshack.us/img137/213/spirfull.jpg

    Enjoy ^^
  8. After making an NPC and saving it, if I go to change its health from what it orignally was, I get RTE 11 and the client closes. Is there any way to fix this or do I have to have them spot on the first time..?

    EDIT: And now when attacking any NPC I get the same RTE every login and need to wipe the NPCs file before being able to log in.
  9. @Robin:

    > I just read that part of your post.
    >
    > Yes, it's obviously because of that. None of the 1.2.0 data is compatible with 1.3.1.
    >
    > I changed at least a single datatype in every single UDT whilst normalising the damn things. Delete everything.

    Oh ok, I think I read something about you changing that but I wanted to make sure, thank you for the help.
×
×
  • Create New...