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

Eevee204

Members
  • Posts

    245
  • Joined

  • Last visited

    Never

Everything posted by Eevee204

  1. Eevee204

    Error

    What have you done recently to your project? (E.g. What code have you changed, or custom scripts)
  2. @Sythnet: > Sorry, seemed to of lost access to the site, and with compile, it's when you do "Make 'Filename' .exe"
  3. Sorry, seemed to of lost access to the site, and with compile, it when you do "Make 'Filename' .exe"
  4. Since you've messed about with the tutorial.ini did you compile the new version?
  5. ![](http://gyazo.com/e7cd8fbb5efce97295e4b09c2dd21252.png)
  6. Wow, that's is extremely tiny, I can barely see anything.
  7. Oh, glad to hear you fixed it.
  8. Mhmm, only really need it for certain items, guess I'll put that add-on to the side for now.
  9. Sorry, that was a stupid question, can you post a picture of what happens when you get this error.
  10. Where did you find the Tutorial.ini that you followed.
  11. Able to explain a little more? Like what the error actually is.
  12. What have you recently added to your project, like custom scripts?
  13. Eevee204

    Error

    Yeah, I've had this randomly occur to on a few occasions and a few of my mates have had it while they were playing also.
  14. Doesn't really help my problem. :/ Also I've been looking at how resources work, since it would of given a clearer result, still not got it yet though.
  15. Does anyone know how I can go about doing this or know a good tutorial to do this? Thanks
  16. NOTE: BACKUP INCASE THIS DOESN'T WORK! Goto your server files; Data > Accounts: Delete them all apart from Char list. In you charlist, delete all the names. Then go back a folder and go into banks; Delete all the banks folders. Try to create a new account now.
  17. Hello all, I'm trying to make it so that when you cut a tree, you get a log and another item from it, this is what I've got so far: ![](http://gyazo.com/7fe1094bc5b7fec88bca62557f50eff6.png) and I called the scrollbar: scrlReward2 and the label lblReward2. In the scrollbar_change I added the code: ``` Private Sub scrlReward2_Change() ' If debug mode, handle error then exit out If Options.Debug = 1 Then On Error GoTo errorhandler If scrlReward2.Value > 0 Then lblReward2.Caption = "Item Reward: " & Trim$(Item(scrlReward2.Value).name) Else lblReward2.Caption = "Item Reward: None" End If Resource(EditorIndex).ItemReward2 = scrlReward2.Value ' Error handler Exit Sub errorhandler: HandleError "scrlReward2_Change", "frmEditor_Resource", Err.Number, Err.Description, Err.Source, Err.HelpContext Err.Clear Exit Sub End Sub ``` And in ModGameEditors I added the line: ``` .scrlReward.Value = Resource(EditorIndex).ItemReward2 ``` below ``` .scrlReward.Value = Resource(EditorIndex).ItemReward ``` And in mod types for both the server and client side I added: ``` ItemReward2 As Long ``` Below ``` ItemReward As Long ``` and the error I got was 'Invalid property' Did I miss anything out and can someone help me fix this please? - Thanks
×
×
  • Create New...