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

WhyHelloThere

Members
  • Posts

    3
  • Joined

  • Last visited

    Never

WhyHelloThere's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. @ShadowScythe: > ya like you m ight use it for a buff spell like Ex: RUN :cheesy: > Ex; Speed Buff Spell :cheesy: > ya great stuff man i give you :star: :star: :star: :star: :star: out of 5 stars Thank you! I'm happy people are finding this useful. Speed buff spell ftw :)
  2. @BugSICK: > i think i will you this too. thanks, > off topic: is this ur 2nd account? Nope, my first and only account. Enjoy!
  3. Hello all, I am a new developer to Eclipse, found it recently and have been slowly modifying my copy. Figured I would share something I have done since so many tutorials have already helped me. **This is a tutorial to make Admin and administrative staff move faster than normal users.** Client: In modConstants Find ``` ' Speed moving vars Public Const WALK_SPEED As Byte = 4 Public Const RUN_SPEED As Byte = 6 ``` Add underneath it: (The value can be whatever you like) ``` Public Const ADMIN_SPEED As Byte = 18 ``` In modGameLogic - Sub ProcessMovement Find ``` ' Check if player is walking, and if so process moving them over Select Case Player(Index).Moving Case MOVING_WALKING: MovementSpeed = ((ElapsedTime / 1000) * (RUN_SPEED * SIZE_X)) Case MOVING_RUNNING: MovementSpeed = ((ElapsedTime / 1000) * (WALK_SPEED * SIZE_X)) Case Else: Exit Sub End Select ``` Add underneath it: ``` If GetPlayerAccess(MyIndex) >= 2 Then MovementSpeed = ((ElapsedTime / 1000) * (ADMIN_SPEED * SIZE_X)) End If ``` That should be it, let me know if I was a blockhead and forgot something or it doesn't work. :) Enjoy! Sharing is caring.
×
×
  • Create New...