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

da_gad_pader

Members
  • Posts

    69
  • Joined

  • Last visited

    Never

da_gad_pader's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. its better to redownload eclipse 2
  2. there's a bug in this tutorial , i found it myself , "other players cant see ur attack" , did u try this?
  3. and what if the player is on different locations?
  4. > SendAnimation(MapNumber, AnimNnumber, Map_X, Map_Y) i doubt this code play the animation on the player location how can i play the animation on the player location?
  5. like this? ``` Sub CheckPlayerLevelUp(ByVal index As Long) Dim i As Long Dim expRollover As Long Dim level_count As Long level_count = 0 Do While GetPlayerExp(index) >= GetPlayerNextLevel(index) expRollover = GetPlayerExp(index) - GetPlayerNextLevel(index) ' can level up? If Not SetPlayerLevel(index, GetPlayerLevel(index) + 1) Then Exit Sub End If Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) + 5) Call SetPlayerExp(index, expRollover) level_count = level_count + 1 SendAnimation = 1 ```
  6. how can i play an animation in certain events ? example : when the player level up then plays animation 1 whats the code for that?
  7. hey bro , open ur frmEditor_Item then add a tool on the list of cmbtool(combo box) you want then go in ur frmEditor_Resource right click on the Tool Required (scroll bar) and view the code add another case , then on its properties change the maximum then ur done
  8. how can i make item description and spell description show on the lower left side of the mouse pointer not in the ~~upper left~~??
  9. how can i make inventory screen movable/draggable?
  10. can someone explain what's the use of this codes? ``` ' stuffs Public Const HalfX As Integer = ((MAX_MAPX + 1) / 2) * PIC_X Public Const HalfY As Integer = ((MAX_MAPY + 1) / 2) * PIC_Y Public Const ScreenX As Integer = (MAX_MAPX + 1) * PIC_X Public Const ScreenY As Integer = (MAX_MAPY + 1) * PIC_Y Public Const StartXValue As Integer = ((MAX_MAPX + 1) / 2) Public Const StartYValue As Integer = ((MAX_MAPY + 1) / 2) Public Const EndXValue As Integer = (MAX_MAPX + 1) + 1 Public Const EndYValue As Integer = (MAX_MAPY + 1) + 1 Public Const Half_PIC_X As Integer = PIC_X / 2 Public Const Half_PIC_Y As Integer = PIC_Y / 2 ```
  11. i hope someone can answer this question
  12. if ur using origins http://www.touchofdeathforums.com/smf/index.php/topic,72272.msg777074.html#msg777074
  13. follow murdock's tutorial http://www.touchofdeathforums.com/smf/index.php/topic,64777.0.html then find ` set the paperdoll order in modGeneral this should be on Q&A board
×
×
  • Create New...