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

hagefade

Members
  • Posts

    121
  • Joined

  • Last visited

    Never

Everything posted by hagefade

  1. Hi, I found this topic: http://www.touchofdeathforums.com/smf/index.php/topic,29732.0/nowap.html Which explained about copyright and stuff. I was going to release the game to the public in several weeks but then I read the topic and some things that I would need to change. I saw that I would need to change stuff such as the sprites for the monsters, npcs, items and more before I could release the game and have a chance of earning money from it. Could someone please give me a simpler list of what I would need to make myself/change for my game to be released.
  2. Whenever I download and extract eclipse stable 1.2 the server gets deleted, how do I stop this, can I try using 1.1?
  3. Re-written the question: One thing I don't understand about the Eclipse Engine is why the sprites walk so funny. The sprites are from RPG Maker yet in RPG Maker the sprites move smoothly. For some reason the Eclipse engine makes the sprites go to one side and when it goes to the other side the leg looks crippled. If this is a problem, then how do I fix it, if it isn't a problem then what's wrong with it? I also want to know how to fix this, since there is three images for each direction of each sprite yet Eclipse only uses two of those images.
  4. hagefade

    Stats per level…?

    I think, but I just explained it more for him
  5. For the game supposedly it needs the following to run without errors: -ELI.exe (Version 9 or whatever) -libraryfiles.exe -RuntimeFiles.exe If you need to install ELI do you need to install the library files, can I install them all at the same time with one file, and is there anything else I can do so they don't need to install so much.
  6. Hi, I'm trying to make an installer for library files and 2 other things to make sure the game works but I need to know what files the library files install onto the pc?
  7. hagefade

    Stats per level…?

    1) Open Server Folder 2) Open Scripts Folder 3) Open text file 'Main' 4) Find this code: ``` ' Executes when a players experience exceeds the next level requirement. Sub PlayerLevelUp(Index) Dim TotalExp Do While GetPlayerExp(Index) >= GetPlayerNextLevel(Index) TotalExp = GetPlayerExp(Index) - GetPlayerNextLevel(Index) Call SetPlayerLevel(Index, GetPlayerLevel(Index) + 1) Call SetPlayerPOINTS(Index, GetPlayerPOINTS(Index) + 1) Call SetPlayerExp(Index, TotalExp) Loop 'Give player full hp and mp Call SetPlayerHP(Index, GetPlayerMaxHp(Index)) Call SetPlayerMP(Index, GetPlayerMaxMP(Index)) Call BattleMsg(Index, "You have " & GetPlayerPOINTS(Index) & " stat points.", BRIGHTBLUE, 0) End Sub ```5) Change the 1 to whatever Call SetPlayerPOINTS(Index, GetPlayerPOINTS(Index) + 1)
  8. Hi, when i ask people to try my game, they have to download the game, extract it, then install: -RuntimeFiles -ELI 2 Beta -Library files Is the a program or something where it installs the client and the 3 files above at the same time?
  9. hagefade

    Refresh Data

    Thanks, but the code stopped working after I added 2 more cases into the npc scripts, can you help me here too: http://www.touchofdeathforums.com/smf/index.php/topic,56985.0.html
  10. For some reason I suddenly attack/talk to any NPCs, no matter what mode, scripted, friendly or whatever, what's wrong? ``` ' Executes whenever a scripted NPC does an action. Sub ScriptedNPC(Index, Script) Select Case Script Case 0 Call PlayerMsg(Index, "This scripted NPC has no apparent use.", WHITE) Exit Sub Case 1 If GetPlayerLevel(Index) >= 10 Then If GetPlayerClass(Index) = 0 Then Call SetPlayerClass(Index, 2) Call SetPlayerLevel(Index, 10) Call SetPlayerPOINTS(Index, 0) Call SetPlayerSTR(Index, 8) Call SetPlayerDEF(Index, 4) Call SetPlayerMAGI(Index, 0) Call SetPlayerSPEED(Index, 10) Call PlayerMsg(Index, "Congratulations, you are now a Holy Warrior", BLUE) Call SendPlayerData(Index) Call SendStats(Index) Else Call PlayerMsg(Index, "Sorry, you must be a Holy Child to become a Holy Warrior.", RED) End If Else Call PlayerMsg(Index, "Sorry, you must be at least level 10 to become a Holy Warrior. Only " & (10 - GetPlayerLevel(Index)) & " more levels to go!", RED) End If Exit Sub Case Else Call PlayerMsg(Index, "No NPC script found. Please contact an admin to solve this problem.", WHITE) Exit Sub Case 2 If GetPlayerLevel(Index) >= 10 Then If GetPlayerClass(Index) = 0 Then Call SetPlayerClass(Index, 4) Call SetPlayerLevel(Index, 10) Call SetPlayerPOINTS(Index, 0) Call SetPlayerSTR(Index, 2) Call SetPlayerDEF(Index, 2) Call SetPlayerMAGI(Index, 10) Call SetPlayerSPEED(Index, 10) Call PlayerMsg(Index, "Congratulations, you are now a Holy Magician", BLUE) Call SendPlayerData(Index) Call SendStats(Index) Else Call PlayerMsg(Index, "Sorry, you must be a Holy Child to become a Holy Magician.", RED) End If Else Call PlayerMsg(Index, "Sorry, you must be at least level 10 to become a Holy Magician. Only " & (10 - GetPlayerLevel(Index)) & " more levels to go!", RED) End If Exit Sub Case Else Call PlayerMsg(Index, "No NPC script found. Please contact an admin to solve this problem.", WHITE) Exit Sub Case 3 If GetPlayerClass(Index) = 2 Or GetPlayerClass(Index) = 3 Or GetPlayerClass(Index) = 4 Or GetPlayerClass(Index) = 5 Then Call PlayerWarp(Index, 2, 15, 15) Call PlayerMsg(Index, "You have been teleported away from the tutorial area.", YELLOW) Else Call PlayerMsg(Index, "Sorry, you must get a job advance before can you teleport away from the tutorial area.", RED) End If Exit Sub Case Else Call PlayerMsg(Index, "No NPC script found. Please contact an admin to solve this problem.", WHITE) Exit Sub End Select End Sub ```
  11. hagefade

    Refresh Data

    Hi I have this code for job advance: ``` If GetPlayerLevel(Index) >= 10 Then If GetPlayerClass(Index) = 0 Then Call SetPlayerClass(Index, 2) Call SetPlayerLevel(Index, 10) Call SetPlayerPOINTS(Index, 0) Call SetPlayerSTR(Index, 8) Call SetPlayerDEF(Index, 4) Call SetPlayerMAGI(Index, 0) Call SetPlayerSPEED(Index, 10) Call PlayerMsg(Index, "Congratulations, you are now a Holy Warrior", BLUE) Call SendPlayerData(Index) ``` There's more but that's the main stuff, when it gets job advance the stats aren't shown to change, but if you close the game and open it again, they change. How do I make it so straight after the stats/level/class change, it shows?
  12. hagefade

    Job Advance

    Hey It works now since I changed the code to this: ``` ' Executes whenever a scripted NPC does an action. Sub ScriptedNPC(Index, Script) Select Case Script Case 0 Call PlayerMsg(Index, "This scripted NPC has no apparent use.", WHITE) Exit Sub Case 1 'The classes If GetPlayerLevel(Index) >= 10 Then If GetPlayerClass(Index) = 0 Then Call SetPlayerClass(Index, 2) Call PlayerMsg(Index, "Congratulations, you are now a Holy Warrior", BLUE) Call SendPlayerData(Index) Else Call PlayerMsg(Index, "Sorry, you must be a Holy Child to become a Holy Warrior.", RED) End If Else Call PlayerMsg(Index, "Sorry, you must be at least level 10 to become a Holy Warrior. Only " & (10 - GetPlayerLevel(Index)) & " more levels to go!", RED) End If Exit Sub Case Else Call PlayerMsg(Index, "No NPC script found. Please contact an admin to solve this problem.", WHITE) Exit Sub End Select End Sub ``` But now how do I set the skill points to the ones set to the class in the class2.ini file?
  13. hagefade

    What do i do?

    Ya but I used no-ip and it didn't work for me…
  14. Hi, is it possible to change the respawn point,. Can I set a variable called respawn which starts at 0 and respawns you at the starting location in the tutorial area when you start the game. Then when you enter the town it sets the variable to 1 and from then on it respawns you at the town when you die. Then when get your job advance at level 10 you can teleport out of the area then it respawns you at the town outside of the tutorial area. Please help =)
  15. Wait, dun worry, it worked, thanks =D but I still having trouble with: http://www.touchofdeathforums.com/smf/index.php/topic,56824.0.html
  16. hagefade

    Job Advance

    It still isn't working, I put the code in where you told me. I went to the trainer and set it to scripted then to 1. Is ctrl to talk to the npc?
  17. KK thanks, also check out this topic cause I need help with it too: http://www.touchofdeathforums.com/smf/index.php/topic,56824.msg602364.html#msg602364
  18. How do you make it so you restore all your hp and mp when you level?
  19. hagefade

    Job Advance

    What do I call the file? Also I gave you 2 internets, I used a proxy =) Also do I put the code on the file like this?: ``` Sub OnAttack(index) Case 1 Dim class_one as String, Dim class_two as String class_one = GetVar(App.Path "\classes\class0.ini", CLASSDATA, Name) class_two = GetVar(App.Path "\classes\class1.ini", CLASSDATA, Name) If GetPlayerLevel(Index)
  20. Hi, along with trying eclipse, I also make flash games. Currently my best game is Laser Force V2, you can play it at: http://www.kongregate.com/games/Hagefade/laser-force-version-2 If it gets to a rating of 3.8 or higher I can get a thing called badges which makes a lot of people play the game, which gets me hundreds of dollars. The higher above 3.8 it gets the more chance I have of getting badges and the money. Currently it is at 3.67 so it is very close. If you like it please rate it highly. Thanks in advance
  21. Ya but they can change direction, is there anyway you have make them just face one direction all the time?
×
×
  • Create New...