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

Joost

Members
  • Posts

    224
  • Joined

  • Last visited

    Never

Joost's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Joost

    New Eclipse Admin

    @‭‭‭Marsh: > I want to make it more obvious that this is ready to use engine. The main page does not make that inherently apparent. I also want to release the source and compiled as two separate versions to be more helpful to newbs. The extras section will get a upgrade. Any advice is welcome. I will see what Socuine wants to do and figure out a gameplan. Focus on the closed source aspect like you say, offer demo content either in the form of youtube vids or online games. Average person will spend roughly 5 seconds on this site to determine whether this is the thing they want to use or not.
  2. The largest difference is the graphics part, a lot of the tutorials that have nothing to do with graphics will probably still work.
  3. Joost

    Getting An IP

    Most people here aren't allowed to host a server using their internet but they do it anyway. Your ISP won't even notice it, and if they will they won't shut you down randomly.
  4. Something is fucked with your winsock.dll would be my first guess
  5. A better gui is an understatement for converting all the visual basic buttons and stuff to proper directx8, not one of the easiest tasks.
  6. If your dps classes oneshot tank classes then your balance is indeed fucked up on a large scale. Balancing PVP while keeping PVE balanced is a near impossible task though.
  7. you're wrong, they use lua, a proper language. or it might be ruby actually. Either way, no sadscript
  8. You're not going to find any links/guides/references to sadscript anywhere except PW/Elysium/Eclipse pretty much, it is the same syntax and you should have no problem editing most of the code When it comes to winsock and graphics, that's all new. I think there are tuturoals on how to blt things and how to send packets, you should try to find those. Besides that, if you know sadscripting you should be able to read code no problem, so just go over the code and tuts.
  9. ``` If n index Then If n > 0 Then Call SetPlayerVital(n, Vitals.HP, GetPlayerMaxVital(n, Vitals.HP)) Call SetPlayerVital(n, Vitals.MP, GetPlayerMaxVital(n, Vitals.MP)) Call SendVital(n, Vitals.HP) Call SendVital(n, Vitals.MP) Call PlayerMsg(n, "You Feel Refreshed.", BrightBlue) Call AddLog("You Healed" & GetPlayerName(n) & ".", ADMIN_LOG) Else Call PlayerMsg(index, "Player is not online.", White) End If Else Call SetPlayerVital(n, Vitals.HP, GetPlayerMaxVital(n, Vitals.HP)) Call SetPlayerVital(n, Vitals.MP, GetPlayerMaxVital(n, Vitals.MP)) Call SendVital(n, Vitals.HP) Call SendVital(n, Vitals.MP) Call PlayerMsg(n, "You Feel Refreshed.", BrightBlue) Call AddLog("You Healed" & GetPlayerName(n) & ".", ADMIN_LOG) End If ``` This is the same thing with less lines of code ``` If n > 0 Then Call SetPlayerVital(n, Vitals.HP, GetPlayerMaxVital(n, Vitals.HP)) Call SetPlayerVital(n, Vitals.MP, GetPlayerMaxVital(n, Vitals.MP)) Call SendVital(n, Vitals.HP) Call SendVital(n, Vitals.MP) Call PlayerMsg(n, "You Feel Refreshed.", BrightBlue) Call AddLog("You Healed" & GetPlayerName(n) & ".", ADMIN_LOG) Else Call PlayerMsg(index, "Player is not online.", White) End If ```
  10. All they want you to do is add "Engine was made by Eclipse" at the bottom of your recruitment post.
  11. Joost

    Full Heal

    ``` ' Restore vitals Call SetPlayerVital(index, Vitals.HP, GetPlayerMaxVital(index, Vitals.HP)) Call SetPlayerVital(index, Vitals.MP, GetPlayerMaxVital(index, Vitals.MP)) Call SendVital(index, Vitals.HP) Call SendVital(index, Vitals.MP) ' send vitals to party if in one If TempPlayer(index).inParty > 0 Then SendPartyVitals TempPlayer(index).inParty, index ```How about that?
  12. Joost

    Full Heal

    ``` Sub SetPlayerVital(ByVal index As Long, ByVal Vital As Vitals, ByVal Value As Long) Function GetPlayerMaxVital(ByVal index As Long, ByVal Vital As Vitals) As Long ```Check those out.
  13. AFAIK all spells/items/whatever except player files is being loaded into memory when the server starts up, and is ignored unless changed. So besides a faster loading server, what's the gain of using mysql for that?
  14. Joost

    Kill Player

    ``` Dim index ```Dont dim things if you're not using them and especially dont leave them w/o a type. (integer or whatever)
  15. that is spodi's work, is it not? (the code, netgore.com, not the mapping)
×
×
  • Create New...