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

Pasketi

Members
  • Posts

    350
  • Joined

  • Last visited

    Never

Pasketi's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I hope someone is here to write back today… Forgot the error message from the first post, but it's RTE 380: Invalid Property Value.
  2. And you say it now? I've been in the army for, what, 83 days, and before that I already half a year ago dumped the project, because I had no graphics (Now I apologize for my angryness, because I'm tired, and I've been working on this for quite a while today) artist. Now, when I'm being enthusiastic to get a NEW game engine to work properly for my purposes (I have an assload of stuff to import and learn) you say to wait for a while. How long? A week? A month? 279 days? God damnit… Can't you even try? This'll maybe help Alatar too (supposing he reads this). PS. Oh, added one thing in the first ~~thread~~ post I totally forgot about… PSS. I'm tired...
  3. Hi! I'm trying to modify a copy of EO for my old game project. I think I'm quite close to correcting some problems in Alatar's Quest system, but I happen to be stuck. Problem: I've added 9 more reward-item and reward-item value scroll bars on the "Rewards" page, changed all the constants to arrays, added loops everywhere, where they are needed and modified the code as I THINK it should be done. What it does, it crashes the client when the quest editor is opened. Error message says it's RTE 380: Invalid Property Value Also, for the next 279 days I'm in the army, so I can't possibly look deeper on this problem as often as I liked to. The scrollbar names are the same, except for the (0) - (9) in the end. Where I think the problem is (client side): ``` Private Sub scrlItemRew_Change(Index As Integer) lblItemReward(Index).Caption = "Item Reward: " & scrlItemRew(Index).Value & " (" & scrlItemRewValue(Index).Value & ")" Quest(EditorIndex).RewardItem(Index) = scrlItemRew(Index).Value End Sub Private Sub scrlItemRewValue_Change(Index As Integer) lblItemReward(Index).Caption = "Item Reward: " & scrlItemRew(Index).Value & " (" & scrlItemRewValue(Index).Value & ")" Quest(EditorIndex).RewardItemAmount(Index) = scrlItemRewValue(Index).Value End Sub ``` The rest of the ducking thing… In declarations: ``` RewardItem(0 To 9) As Long 'ToDo: make this dynamic RewardItemAmount(0 To 9) As Long ``` In "QuestEditorInit": ``` .scrlExp.Value = Quest(EditorIndex).RewardExp For i = 0 To 9 .scrlItemRew(i).Value = Quest(EditorIndex).RewardItem(i) Next If Not Quest(EditorIndex).RewardItemAmount(i) = 0 Then For i = 0 To 9 .scrlItemRewValue(i).Value = Quest(EditorIndex).RewardItemAmount(i) Next Else For i = 0 To 9 .scrlItemRewValue(i).Value = 1 Next End If 'load task nº1 etc. ``` In Sub Form_Load: ``` Dim i As Integer For i = 0 To 9 scrlItemRew(i).Max = MAX_ITEMS scrlItemRewValue(i).Max = MAX_BYTE Next ``` Server side: In Declarations: ``` RewardItem(0 To 9) As Long RewardItemAmount(0 To 9) As Long ``` In SaveQuest: ``` For i = 0 To 9 Put #F, , Quest(QuestNum).RewardItem(i) Put #F, , Quest(QuestNum).RewardItemAmount(i) Next ``` In LoadQuests: ``` For n = 0 To 9 Get #F, , Quest(i).RewardItem(n) Get #F, , Quest(i).RewardItemAmount(n) Next ``` In EndQuest: ``` 'give rewards For i = 0 To 9 GiveInvItem Index, Quest(QuestNum).RewardItem(i), Quest(QuestNum).RewardItemAmount(i) Next ``` I think that was all… Any suggestions? -P
  4. http://www.aperturescience.com/glados@home/ Help us… We can't do it on our own... She will reboot... tomorrow...
  5. http://www.aperturescience.com/glados@home/ We're doing it for cake… She will live once more... I know she will...
  6. Pasketi

    Spork

    @Sealbreaker: > glowing spork - EPIC > > http://lightmyfire.com/395-147-limited_edition_2010.htm Lol… Spork... It's the tool of kings... Try it on pork, try it with onion rings... Spork sure goes with everything.... 'Cause it's made from spoon and also fork is good... Just bring some to the picnic, baby... (continue)
  7. Pasketi

    Wow.

    @Felix: > So, what's changed here besides the look? Nothing
  8. No offence, but that's just horrible… He should take more time in exploring the possibilities of greenscreen...
  9. @Fabio: > inb4 330 pages of nerds… oh wait 132 on me. Using more posts/page
  10. Pasketi

    Spork

    @Kobeki: > Holy crap. Where can I buy this god-like piece of equipment? e_e From your closest hiking-equipment store. It's made by Light My Fire http://lightmyfire.com/ @Marsh: > Also thats not even a true spork. This is the spork that is known and loved. Mine actually is advertised as a "Spork" in my country. And it got a knife too! MAGNEFICENT!!!
  11. @Wraith: > For now though, here's a character I just finished. I've never done any type of sci-fi drawing so sorry if it lacks a bit of creativity. > > [![](http://img253.imageshack.us/img253/8253/plasmawhipchar.png)](http://img253.imageshack.us/I/plasmawhipchar.png/) This makes me want to play Global agenda for some reason… Looks like a recon with a "Recon Spook" Helmet... If I remember it right... Wonderful job! Truly magneficent! I'd like to see your skills in a comic book. This is just a suggestion, but you could practice by taking a movie scene, draw some frames and add speech bubbles. I can see a Batman and Joker -comic strip already. Edit: Enter, The Recon: >! ![](http://gamesareevil.com/wp-content/uploads/2010/02/global-agenda-recon-screenshot.jpg) >! ![](http://static.gamesradar.com/images/mb/GamesRadar/us/Games/G/Global%20Agenda/Everything%20Else/Recon_Geist_Male--article_image.jpg)
  12. Pasketi

    Spork

    How to get lots of replys on your post in Eclipse forums? Use the word Spork! And post a picture of a real life spork: ![](http://www.kirou.com/wp-content/spork-700806.jpg) (I've actually seen one (box) of those… I was gonna post this on the "spork" thread, but realized it's 4 years old)
  13. Why This Just Can't Be Fixed? Bump Seriously, this sucks sandviches. If not a tutorial fix, then tell me where could I find the problem? I might be able to fix it myself…
×
×
  • Create New...