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

jaekx

Members
  • Posts

    78
  • Joined

  • Last visited

    Never

Everything posted by jaekx

  1. jaekx

    Item-amount checking

    **-ADDING THE NEW SUBS-** **Double clicking the cmbReqItemOperator** Private Sub cmbItemReqOperator_Change() If EditorIndex = 0 Or ListIndex = 0 Then Exit Sub Events(EditorIndex).SubEvents(ListIndex).Data(5) = cmbItemReqOperator.ListIndex End Sub **Double clicking the txtBranchItemReq** Private Sub txtBranchItemReq_Change() If EditorIndex = 0 Or ListIndex = 0 Then Exit Sub Events(EditorIndex).SubEvents(ListIndex).Data(2) = Val(txtBranchItemReq.Text) End Sub **-ALTERING THE ALREADY EXISTING CODE-** ****code** = code that I added** Select Case .Data(1) Case 0 cmbBranchVar.ListIndex = .Data(6) txtBranchVarReq.Text = .Data(2) cmbVarReqOperator.ListIndex = .Data(5) Case 1 cmbBranchSwitch.ListIndex = .Data(5) cmbBranchSwitchReq.ListIndex = .Data(2) Case 2 cmbBranchItem.ListIndex = .Data(2) ****txtBranchItemReq.Text = .Data(2)** **cmbItemReqOperator.ListIndex = .Data(5)**** Case 3 cmbBranchClass.ListIndex = .Data(2) - 1 Case 4 cmbBranchSkill.ListIndex = .Data(2) - 1 Case 5 cmbLevelReqOperator.ListIndex = .Data(5) txtBranchLevelReq.Text = .Data(2) End Select –------------------------------------------------------------------------------- Select Case Index Case 0 cmbBranchVar.Enabled = True cmbVarReqOperator.Enabled = True txtBranchVarReq.Enabled = True Case 1 cmbBranchSwitch.Enabled = True cmbBranchSwitchReq.Enabled = True Case 2 cmbBranchItem.Enabled = True ****cmbItemReqOperator.Enabled = True** **txtBranchItemReq.Enabled = True**** Case 3 cmbBranchClass.Enabled = True Case 4 cmbBranchSkill.Enabled = True Case 5 cmbLevelReqOperator.Enabled = True txtBranchLevelReq.Enabled = True End Select –----------------------------------------------------------------------------------- Private Sub optCondition_Index_Click(Index As Integer) If EditorIndex = 0 Or ListIndex = 0 Then Exit Sub cmbBranchVar.Enabled = False cmbVarReqOperator.Enabled = False txtBranchVarReq.Enabled = False cmbBranchSwitch.Enabled = False cmbBranchSwitchReq.Enabled = False cmbBranchItem.Enabled = False ****cmbItemReqOperator.Enabled = False** **txtBranchItemReq.Enabled = False**** cmbBranchClass.Enabled = False cmbBranchSkill.Enabled = False cmbLevelReqOperator.Enabled = False txtBranchLevelReq.Enabled = False –--------------------------------------------------------------------------------- cmbLevelReqOperator.Clear cmbPlayerVarCompare.Clear cmbVarReqOperator.Clear ****cmbItemReqOperator.Clear**** For i = 0 To ComparisonOperator_Count - 1 cmbLevelReqOperator.AddItem GetComparisonOperatorName(i) cmbPlayerVarCompare.AddItem GetComparisonOperatorName(i) cmbVarReqOperator.AddItem GetComparisonOperatorName(i) ****cmbItemReqOperator.AddItem GetComparisonOperatorName(i)****
  2. jaekx

    Item-amount checking

    Well essentially what I did was double click the player variable section and its components and search through them and add my new stuff and switch the names around a little bit. Should I paste what code I made here?
  3. jaekx

    Switch help

    You could just automatically warp player to a new map thats built similarly but with the desired changes.
  4. Go to server then data then the delete all the .dat's in the selected folder. Map, NPC, Item, Quest ect. Delete them all if you want an entirely fresh start. Automation errors usually come about when you have dodgey drivers too I believe?
  5. LOL i love the random maplestory sprites in there. Keep in mind those are not free to use without credit to nexon
  6. I had the same problem with the dx8vb.dll, I had to manually make sure they were being installed into the win32 folder. They were going into the win32 or win64 folder by default. Just re-install them and make sure it is in win32\. JUST win32, nothing else.
  7. jaekx

    Expierence 911

    Well since im not awesome at the programming aspect of it I cant tell you where to look to find the experience/level-up combinations. But I can tell you that if it takes 10 experience to lvl up to lvl 2 and local enemies give 1 exp then you will have to kill 10 enemies. Same holds true if the exp required to lvl 2 is 100, just make the enemies give out 10 exp each. It will still require killing 10 monsters. Just an alternative way to look at it without having to code, its how I do it anyways. Sorry i didnt answer it like you had hoped im sure someone else will!
  8. jaekx

    Item-amount checking

    I've been working on trying to do this for a few days now and I haven't really accomplished a WHOLE lot. To begin, I am running eclipse advanced v3.0.13\. My goal is to have a working item-amount check in the 'conditional branch' section of the event system. As circled in red below I have the GUI set up with combo box 'cmbItemReqOperator' and a text box 'txtBranchItemReq' after the already implemented combo box 'cmbBranchItem.' ![](http://i.imgur.com/LKuY8.jpg) Ive attempted to code this by looking at how the other similar boxes are set up but havent succeeded yet. When I run my program and I check 'has item' and choose an item ex: 'leather' and then I type 5 and click save. Upon re opening the quest editor, even after save, the item box will no longer say leather yet the text box still says 5\. If anyone wishes to help me with a tutorial I added the cmbBox so that it could be set up like this. 'Has Item' - 'Leather' - '>=' - '5.' I figure logical operators will help for further customization and clarify better. I'll continue trying, though I doubt I'll succeed. Any tips, suggestions, help, tutorials are all greatly appreciated. Thank you!
  9. I think I understand, that is how my eclipse advanced came clean with that error so anyone who has the same problem just delete your item.dat's and it should clear it up!
  10. Ah yes deleting my items did the trick, for further understanding to help me in the future what was likely creating such an error? I actually want to start understanding this stuff lol
  11. Whenever I hit the item editor button on my admin panel this is what I get. It then proceeds to crash. ![](http://i.imgur.com/CED7g.jpg) I went in and I debugged it and this is the line of code that gets highlighted ![](http://i.imgur.com/vZ2mz.jpg) Ive searched around the entire project for .data1's and I havent been able to assess why it doesnt understand this portion of code? Any help?
  12. jaekx

    Questing help

    Does anyone know a good questing system that works well with EO event system 2.3? I tried alatars and I just got a crap load of syntax errors. Is there any others by chance? Thanks in advance!
  13. jaekx

    Multiple drops

    Yeah I was thinking about doing that. I did look and I came across that tutorial as well, the only reason i posted a question was because that tutorial doesnt include the downloads needed anymore. Ive asked him to message me them and I havent gotten any response. Sorry, I didnt wanna seem like im doing it effortlessly.
  14. jaekx

    Multiple drops

    How do you make monsters have multiple drops? NPC editor only allows for 1 item.
  15. It only works when i compile it, it doesnt work when i run the actual client.. T___T Edit - fixed that as well. sorry.
  16. Awesome thank you guys so much! > : D
  17. sorry to be a total noob, but do you have any tips on how to access the picCharacter box? I have to move all the others out of the way because its under them and I fear I wont place them back in the exact spot there in now.
  18. also important to note, you have to compile if you want any VB alterings to carry over to your client. Saving alone wont work,
  19. In eclipse origins whilst a player is playing there is no menu that displays the players current class name. There is a label somewhere (which I cant seem to find) that says playernname - playerlevel when you hit the character button. How would I go about having class name added to that as well? If I made a new label what would I put in the code behind the label to get the player class name to appear? Thanks!
  20. awesome thank you JC and all who replied! Made it so easy on me! XD
  21. Just like the topic states, how would I make an NPC say "Hello 'playername'!" and where would I put the code?
  22. xDD ill give it a shot thank you!
  23. how do I edit code then!?
  24. jaekx

    VB6 issue

    Whenever I try to install VB6 this is the error I get. http://i.imgur.com/lfvRI.png Yes I tried running as administrator and turning of my UAC and neither worked. What should I do? Does anyone have another download link I can try? This is frusterating v__v
×
×
  • Create New...