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

Dyto

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Posts posted by Dyto

  1. I had a project fully done in EE 2.7 and then…Eclipse origins came to be and there was absolutely no way to update and changeover to the new client without starting allover again. I had a computer problem and my comp fried leaving me with nothing but my script and a few ini's / .dll's etc.... I need Eclipse Evolution 2.7 or 2.8, please ...point me to the download!
  2. Im working with 2.8 and Im not sure the changes exactly from 2.8 to 2.7 but I've been pretty happy with 2.8 and I wanted to make some heavy source edits but the only source I can find is 2.7, does anybody have the source download for 2.8? Can anybody explain the differences between the two ?
  3. ' Executes when a player presses the CONTROL key.
    Sub OnAttack(Index, Damage)
    Dim Target
    Dim Range
    Dim DMG
    Range = Rand(100, 1)
    DMG = Int(Damage) + Int(Range)
    If Int(Damage) > 0 Then
    If Int(GetPlayerTarget(Index)) > 0 Then
    Target = GetPlayerTarget(Index)
    Call DamagePlayer(Index, Target, Int(DMG))
    Else
    Target = GetPlayerTargetNPC(Index)
    Call DamageNPC(Index, Target, Int(DMG))
    End If
    End If
    End Sub

    Sub OnArrowHit(Index, Damage)
    Dim Target
    Dim Range
    Dim DMG
    Range = Rand(100, 1)
    DMG = Int(Damage) + Int(Range)
    If Int(Damage) > 0 Then
    If Int(GetPlayerTarget(Index)) > 0 Then
    Target = GetPlayerTarget(Index)
    Call DamagePlayer(Index, Target, Int(DMG))
    Else
    Target = GetPlayerTargetNPC(Index)
    Call DamageNPC(Index, Target, Int(DMG))
    End If
    End If
    End Sub

    Sub PlayerHit(Index, NPCNum, Damage)
    Dim Range
    Dim DMG
    Range = Rand(100, 1)
    DMG = Int(Damage) + Int(Range)
    If Damage > 0 then
    Call NPCAttack(NPCNum, Index, Int(DMG))
    End If
    End Sub

    Just trying to change the damage numbers but nothing seems to change the dmg and I've been spending like 2 hours trying to figure it out lol
×
×
  • Create New...