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

ondalor

Members
  • Posts

    12
  • Joined

  • Last visited

    Never

ondalor's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. ondalor

    OUYA

    thank you for your response growlith. Glad to know you think it possible. Any suggestions on where to gather possible team members? I was thinking Kongregate forums. Is there a somewhere here i should start?
  2. ondalor

    OUYA

    I am thinking of using the OUYA dev kit to try to make an EO based game for the OUYA system. Is this a realistic/ legal option? I want to make sure that I am not bringing myself trouble befor i begin. [http://www.ouya.tv/develop/](http://www.ouya.tv/develop/)
  3. Hello Everyone, I'm Lonnie. I started working with Eclipse back in 2008 with Total Eclipse and then migrated to Eclipse Evolution 2.8 After about 2 years i ran into trouble financially and had to shut down the server but now am back. I am gald to see that the eclipse community is still strong and a new version named Eclipse Origins has been developed. I am no longer giving the server my full time attention and there for will not be updating to the origins system. My old game formerly Eclipse 2 has been restructured into Dreamscapes, A simple small community for friends to gather and explore while chatting in a friendly environment. Over the years of inactivity my main.txt was destroyed and the functioning Quest system i had in place was lost, I have the basic framework it was designed with but need assistance in getting it up and running. For now there are no scripted NPC's. If anyone can assist i would greatly appreciate it. I know that it is an older system that is not supported by the site administration any more but I would like to restore my former game to is original functionality. You can contact me at: [email protected] [email protected] or [email protected] My temporary site is: [http://lonnie.servehttp.com](http://lonnie.servehttp.com) Here you can find the basic client. Come enjoy the world.
  4. This shoud work i beive but it doesnt seem to. why? Sub CanTake(index, item, value) CanTake = false SLOT = 1 Do While SLOT < 24 If CanTake(index, SLOT) = item Then CanTake = true SLOT = 24 End If SLOT = SLOT+1 Loop End Sub
  5. Hello I am Lonnie I have had a Eclipse server for a long time (sience 2009) It Is an EE 2.8 server that has several small simple scripted quests but recently i lost my server and had to start fresh. Any help with restoring the quests would be appreciated this is what i have sofar: I have placed these in my Main.txt ' Gives and takes items Sub TakeItem(index, item, value) If value = "all" Then SLOT = 1 Do While SLOT < 24 If GetPlayerInvItemNum(index, SLOT) = item Then Call SetPlayerInvItemNum(index, SLOT, 0) Call SetPlayerInvItemValue(index, SLOT, 0) Call SendInventoryUpdate(index, SLOT) SLOT = 24 End If SLOT = SLOT+1 Loop End Sub Else SLOT = 1 Do While SLOT < 24 If GetPlayerInvItemNum(index, SLOT) = item Then Call SetPlayerInvItemNum(index, SLOT, 0) Call SetPlayerInvItemValue(index, SLOT, GetPlayerInvItemValue(index, SLOT) - value) Call SendInventoryUpdate(index, SLOT) SLOT = 24 End If SLOT = SLOT+1 Loop End Sub End If Sub GiveItem(index, item, value) SLOT = 1 Do While SLOT < 24 If GetPlayerInvItemNum(index, SLOT) = 0 Then Call SetPlayerInvItemNum(index, SLOT, item) Call SetPlayerInvItemValue(index, SLOT, value) Call SendInventoryUpdate(index, SLOT) SLOT = 24 End If SLOT = SLOT+1 Loop End Sub What i need now is the method to check if an item is in a players inventory. I Used to use: If CantTakeItem = true then or something of the sort but i have forgotten :( please i know it says EE isnt supported but any help is appreciated.
  6. I got the same error Run-time error 480 Can't Create AutoRedraw image. except mine is happening as soon as i log in. and it only happens on my laptop. My desktop connects and logs in fine. I cant connect to my friends Eclipse servers either. Same error. whats happening?
×
×
  • Create New...