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

kira423

Members
  • Posts

    279
  • Joined

  • Last visited

    Never

Everything posted by kira423

  1. kira423

    [ES] Errors

    yes i checked that first b4 even posting this thread
  2. kira423

    [ES] Errors

    I did, and it still isn't working…. I have no idea what to do
  3. kira423

    [ES] Errors

    Yes the NPC is set to case 0
  4. kira423

    [ES] Errors

    okay no errors, but the NPC isn't saying anything at all
  5. kira423

    [ES] Errors

    now its giving me the string error again
  6. kira423

    [ES] Errors

    His is the same as yours….. he just took off the exit sub at the end
  7. kira423

    [ES] Errors

    I used Godlords fix and I get Type Mismatch 'CInt' Line 6
  8. kira423

    [ES] Errors

    ``` ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Module: ScriptedNPC.ess ' ' Author: Stephan J.R. van Schaik ' ' Date: August 30th, 2009. ' ' Version: 1.0.0 ' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Function: ScriptedNPC ' ' Brief: executes when somebody talks to a NPC. ' ' Parameters: ' ' Index: the index of the player. ' ' Script: the script to execute. ' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Sub ScriptedNPC(Index, Script) Select Case Script Case 0 'Hitaninas Quest 'Quest Nummer 0 Begin If GetPlayerLevel(Index) > -1 Then If Getvar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0") = 0 Then Call PlayerMsg(Index, "Hitanina says: Welcome to the Land of Avanveil, here is some info you should know... wait where is my book???", CYAN) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0", 1) ElseIf GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0") = 1 Then If CanTake(Index, 12, 1) Then Call TakeItem(Index, 12, 1) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0", 2) Call PlayerMsg(Index, "Hitanina says: Thank you soooo much, now I can tell you more about Avanveil!", CYAN) Call SetPlayerEXP(Index, GetPlayerEXP(Index) + 15) Call PlayerMsg(Index, "You receive experience points: 15", YELLOW) Call SendStats(Index) Call PlayerLevelUp(Index) Call GiveCurrency(Index, 1, 300) Call PlayerMsg(Index, "You receive Money: 300", YELLOW) Else Call PlayerMsg(Index, "Hitanina says: It was right here, but now it's gone... where did it go", CYAN) End If ElseIf GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0") = 2 Then Call PlayerMsg(Index, "Hitanina says: You where brought here, because you have decided to help us save this land against all evil, but be warned there are many challenges ahead of you.", CYAN) Call PlayerMsg(Index, "(You already completed this Quest.)", BLACK) End If Else Call PlayerMsg(Index, "The Level requirement for this quest is too high.", CYAN) End If End Select End Sub Exit Sub ``` Thats exactly what I have in the ess….. I added the end select as Godlord said, but I am still stuck
  9. kira423

    [ES] Errors

    I am not scripter, so I have no idea how to do anything but copy and paste…. I know a few basics, but I dont even know what strings are.... it makes me think of lines... and if thats right then it would be line 6 that is messed up, but I dont think thats right.
  10. kira423

    [ES] Errors

    Sorry for the double post, but I have fixed everything, and now I am getting this error when I hit cntrl on my scripted npc [![](http://www.freemmorpgmaker.com/files/imagehost/pics/8d5713b9abdd3f9ebaec93578ada2ff4.png)](http://www.freemmorpgmaker.com/files/imagehost/#8d5713b9abdd3f9ebaec93578ada2ff4.png) Is the inventory script already in the BCInventory ess, or does it need to be added?
  11. kira423

    [ES] Errors

    Okay thank you so much Godlord I really appreciate it ^^
  12. kira423

    [ES] Errors

    That goes right before end sub correct?
  13. kira423

    [ES] Errors

    Yea NP this is what is in my Scripted NPC ess ``` ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Module: ScriptedNPC.ess ' ' Author: Stephan J.R. van Schaik ' ' Date: August 30th, 2009. ' ' Version: 1.0.0 ' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Function: ScriptedNPC ' ' Brief: executes when somebody talks to a NPC. ' ' Parameters: ' ' Index: the index of the player. ' ' Script: the script to execute. ' ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Sub ScriptedNPC(Index, Script) Select Case Script Case 0 'Hitaninas Quest 'Quest Nummer 0 Begin If GetPlayerLevel(Index) > -1 Then If Getvar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0") = 0 Then Call PlayerMsg(Index, "Hitanina says: Welcome to the Land of Avanveil, here is some info you should know... wait where is my book???", CYAN) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0", 1) ElseIf GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0") = 1 Then If CanTake(Index, 12, 1) Then Call TakeItem(Index, 12, 1) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0", 2) Call PlayerMsg(Index, "Hitanina says: Thank you soooo much, now I can tell you more about Avanveil!", CYAN) Call SetPlayerEXP(Index, GetPlayerEXP(Index) + 15) Call PlayerMsg(Index, "You receive experience points: 15", YELLOW) Call SendStats(Index) Call PlayerLevelUp(Index) Call GiveCurrency(Index, 1, 300) Call PlayerMsg(Index, "You receive Money: 300", YELLOW) Else Call PlayerMsg(Index, "Hitanina says: It was right here, but now it's gone... where did it go", CYAN) End If ElseIf GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest0") = 2 Then Call PlayerMsg(Index, "Hitanina says: You where brought here, because you have decided to help us save this land against all evil, but be warned there are many challenges ahead of you.", CYAN) Call PlayerMsg(Index, "(You already completed this Quest.)", BLACK) End If Else Call PlayerMsg(Index, "The Level requirement for this quest is too high.", CYAN) End If Exit Sub ```
  14. kira423

    [ES] Errors

    Ok so the first is just a bug… so have I messed up the script for my second error.... most likely I have done something wrong, but I have earthly idea what...
  15. Merry Christmas to you all ^^ I hope you all enjoy your holiday!!!!
  16. kira423

    [ES] Errors

    I am having a couple of problems with my game using Eclipse Stable… one happens upon startup of the server... this is the error it is giving me... [![](http://www.freemmorpgmaker.com/files/imagehost/pics/90a3093c71947df878f47a6afb00d8cb.png)](http://www.freemmorpgmaker.com/files/imagehost/#90a3093c71947df878f47a6afb00d8cb.png) I would understand this error if I had actually changed something in the scripted tile sub, but I haven't messed with it at all. When you walk up to a scripted npc, and push control the server pops this error up [![](http://www.freemmorpgmaker.com/files/imagehost/pics/1b168225b49741fa1c28f6ebe4edff1f.png)](http://www.freemmorpgmaker.com/files/imagehost/#1b168225b49741fa1c28f6ebe4edff1f.png) I have made sure that everything is correct in the data.ini, but other than that I have no idea what I could have done wrong… does the questmaker scripts work with ES... I dont think that it would matter though because it is a normal script, but I don't know what else to think??? Could anyone help?
  17. Here is another Sprite Compilation [![](http://www.freemmorpgmaker.com/files/imagehost/pics/fde4a709b7041a5c23dfad977f047904.png)](http://www.freemmorpgmaker.com/files/imagehost/#fde4a709b7041a5c23dfad977f047904.png)
  18. They are also working on Solar Eclipse which is flash based instead of VB coding…..
  19. kira423

    I got a dog!!!

    how about tag it with the numbers 423 we can find a harmless, painless, humane way of doing it…. hmmmm lets think........
  20. Wow are game names are awfully similar….. wwweeeeiiiirrrrrrdddd
  21. Yeah some examples of your maps would be great, maybe even as video of a finished map so we can see your fringe and animation skills as well, and like SHADERS said I would defiantly run a spell check… most of us are pretty literate..
  22. kira423

    Wtf

    @Draothgorin: > Limp node, I've had one for a year their fun to poke when bored in school. they're harmless I can't believe that you would think that a swollen lymph node is harmless… my dads lymph node in his neck was swollen, and when they did a biopsy on it they diagnosed him with non hodgkins lymphoma, and he died not even a month later......... so yea they aren't harmless.... I would go see a doctor if I were you, but if it is on your collar bone it is most likely a cyst, or an infected boil... so yea make an appointment, it could be life saving.
  23. Okay, but the only think in there is the music=… do I need to add something into it so I can add main music?
  24. Yea I am using ES, is it in the server or client folder? I feel so stupid for not being able to figure this out :(
  25. The only thing I could find was Music=1 and I changed that to the file name, but it didn't work… I changed it back to 1, because I have no earthly idea what it means, but yea..... any suggestions?
×
×
  • Create New...