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

DeathlyCreation

Members
  • Posts

    49
  • Joined

  • Last visited

    Never

DeathlyCreation's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Lol, report this thread and move it to Questions and Answers, then maybe someone will help you.
  2. How can I fix it from moving threw events? Or do I just remove this whole system?
  3. You don't have 500 Points to give away? You only have 70
  4. ``` If GetPlayerBounty(victim) > 0 Then 'Give the reward Call GiveInvItem(attacker, 1, GetPlayerBounty(victim)) 'Send the messages Call PlayerMsg(attacker, "You have received: " & GetPlayerBounty(victim) & " dollars for killing " & GetPlayerName(victim), BrightGreen) Call GlobalMsg(GetPlayerName(victim) & " has been slain by " & GetPlayerName(attacker) & " and has collected the " & GetPlayerBounty(victim) & " dollar bounty on his/her head", BrightGreen) 'Set the bounty to 0 Call SetPlayerBounty(victim, 0) End If ``` ``` Call GiveInvItem(attacker, 1, GetPlayerBounty(victim)) ``` attacker variable not defined
  5. Call GiveInvItem(attacker, 1, GetPlayerBounty(victim)) attacker variable not defined
  6. After fixing that error GetPlayerBounty = Player(index).Char(TempPlayer(index).CurChar).Bounty I reapeated and fixed this error Player(index).Char(TempPlayer(index).CurChar).Bounty = Bounty Now I got this error If Item(ItemNum).Type = ItemCurrency Then Varriable not defined
  7. Now I get this error. ``` Function GetPlayerBounty(ByVal index As Long) As Long On Error GoTo ErrorHandler If index > MAX_PLAYERS Or TempPlayer(index).CurChar = 0 Then Exit Function GetPlayerBounty = Player(index).Char(TempPlayer(index).CurChar).Bounty ' Error handler Exit Function ErrorHandler: HandleError "GetPlayerPK", "modPlayer", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit Function End Function ``` Highlighting on this line ``` If index > MAX_PLAYERS Or TempPlayer(index).CurChar = 0 Then Exit Function ``` Only the ``` .CurChar ``` Part
  8. In server I get error in modHandleData; Call SendBountyList(index) not defined
  9. When you say "Search for:" you don't tell us which module your telling us to search in. Can you please say each module where you search in. Even tho i'm guessing it's in modEnum
  10. lol, now I wan't more. No one else comment on this topic because after I finish another bowl I don't want to see this or it will make me want more. lol
  11. What version are you using of EO,are you using a custom version?
  12. You fixed it ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  13. Server & ClientPackets at top haft to be reversed only for the finding expressions ``` ' Make sure CMSG_COUNT is below everything else CMSG_COUNT ```
  14. lol, DarkMatchFlame ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  15. 'ModEnumerations 'Public Enum ServerPackets ``` ' Make sure SMSG_COUNT is below everything else SMSG_COUNT ``` ' and then in 'Public Enum ClientPackets ``` ' Make sure CMSG_COUNT is below everything else CMSG_COUNT ``` server side ' and then in 'Public Enum ClientPackets ``` ' Make sure CMSG_COUNT is below everything else CMSG_COUNT ```
×
×
  • Create New...