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

zidsal

Members
  • Posts

    163
  • Joined

  • Last visited

    Never

Everything posted by zidsal

  1. zidsal

    HELPHELPHELP

    @sirmuffin: > robin i joined yesterday > > u expect everyone to know everything!!! > everyone started as a noob someday, and now im that noob No he expects you to read the tutorials on getting started rather then wasting everyones time with questions that you could of easily solved for you're self. Theres a difference between being a noob and just plain lazy.
  2. Well I want to re start up haven which can be found at: http://www.touchofdeathforums.com/smf/index.php/topic,47249.0.html Features: Sprite Shops Custom Ship System Sailing System Capturable Cities with taxes given to controlling crew Server based Random Town Events Guild Chat NPCs casting spells NPC name colours NPC level Fishing System Mining System Spawn Point System Bounty Hunting System Item Name Colors Guild Who Command Dynamic Sprite Sizes Party system now has a gui Screenshots ![](http://i72.photobucket.com/albums/i190/Nouda/worldmap-1.png) ![](http://i72.photobucket.com/albums/i190/Nouda/sewer.png) The mapper is self explanitary and will need to show examples. They must be able to have detail in there map but not to be too slow at mapping. The gfx artists job will be to create some topdown tiles for the ship combat system they will need to make: ships (any sizes) water rocks ruined ships e.t.c we are also looking for a gui artist. msg me to apply or for more info. Don't waste my time if your not a good enough mapper.
  3. @.:Ev1ltyphoon:.: > "you do not havze ahigh enough rank to join this channel" > > my name is Ev1ltyph00n k try now robin forgot to change some details
  4. robin decided to make an eclipse clan chat: sabre robyn is channel see you there
  5. zidsal

    Legal?

    @Atoru: > Hey. > As usuall, I've got absaloutly no idea were this is meant to be posted :S > > For I lost im working on (LOA), (I'm kind of a spokesperson..?) obviously, paying for a server for I lost costs money out of our pockets, at the current time its out of my pockets. I know all about adsence and everything. I am in the process of setting up the proper site. I asked this in the forums a few days ago, but i would like someone to elaborate more on what was said. > > "We were thinking of some kind of in-game currency that could be purchaced with real money and used to buy unique items for I lost. The money made from this would go into an account that would be used to pay for the server charges and stuff. Nobody say that nobody would waste their money on our game, i already know more than 5 people who would, and none of them are even on our team. The money in this account could only be accessed by me and would not be withdrawn for the personal needs of anybody. > > What i was told the other day was this would be fine as long as we were using our own GFX. We are using sheets compiled from alot of other sheets put together, most of the graphics on which are from eclipse obviously as we still have the original "Templates" and are still using them. Of cource, alot of these GFX, people, NPCs, heads bodies etc. are from rpgmakerXP or thats what people who have played I lost (Never heard of eclipse) have told me. Therefore, it would be a problem that would need to be resolved with ENTERBRAIN.INC.. Am i correct? > > Alot of our heads, bodies, etc. are hand-drawn pixcel art by the talented people who work on our team. However, of cource, some are still from the original sheets from eclipse. > > Would this in-game currency be alright? Would someone have to look at them and tell us?" > > (The stuff in qoutes is what i was told to say haha) > > But yeah, what would we have to do? Do we have to re-draw the entire GFX set by hand? > > Thanks, sorry if this is in the wrong spot.. it dosn't matter if its free or not rpg maker xp is still illegal to use :P. Thought to be honest the worst that you could get would proberly be them telling you to take the server and game down.
  6. I'm in 2 guilds (1 on main 1 on alt) both decent twink is called g-d of gnomes stole my dirge (tbc joke) main guild is called premade (straight to the point). I've also seen the guild 2 gnomes 1 cup.
  7. zidsal

    Vb6 components

    @☹: > Well if only the RichtText control got altered, remove the picture box or whatever you have now and replace it with a RichText control with the same name as the picture box. > > Regards, > Godlord. proberly quicker to reprogram everything in
  8. zidsal

    Vb6 components

    @☹: > Don't you keep back-ups? If not and you don't want to reprogram everything, you've got to replace all the controls yourself again. > > Regards, > Godlord. I back up but don't thing I've backed up since I added in party system QQ
  9. zidsal

    Vb6 components

    so I'm gona have to reprogram in everything?
  10. zidsal

    Vb6 components

    I reinstalled libary files to fix an issue with my ide but now eclipse dosn't have any of the components like the rich text boxes? is there any easy way to solve this or do I need to add them in manually.
  11. ![](http://i72.photobucket.com/albums/i190/Nouda/HavenWithBoat.png) Haven is looking for 1 scripter to help progress haven so it can go into beta :azn:. Please provide examples of past work what you need to be able yo do * be able to script complex spells such as traps * be able to script quests * be able to script npc spells (there is a sub which allows npcs to cast spells already) * be able to script trade skills such as cooking Thread for Haven: http://www.touchofdeathforums.com/smf/index.php/board,338.0.html rather then say everything in the thread why don't you just look at it ;) Images ![](http://i72.photobucket.com/albums/i190/Nouda/worldmap-1.png) ![](http://i72.photobucket.com/albums/i190/Nouda/sewer.png) ![](http://i72.photobucket.com/albums/i190/Nouda/Elsavis.png) if your interested contact me on the forums and me and Dan will look over the application. sorry about the layout of the thead I am not 1 for words. thanks Zidsal
  12. a bug in the ondeath sub :D so when you die you don't get teleported. Long story short I'm being killed by zombies over again and tried to hide but now I'm completely stuck as a zombies blocking my path =-(. Awsome game though when I use to lurk at eclipse this is 1 of the games I remembered.
  13. @Damian666: > well… for me personally it works great, it doesnt hang anymore, sure, sometimes it jumps... > > but it beats hanging on mapswitch ^^ > > Damian666 you don't notice the effect local host its only when your connecting to the server from another network that you get huge issues with jumping me and dan tried it.
  14. @Emblem: > It checks if the leader of the party needs to level up from the exp. woops my bad :D updated tutorial then edit just retested and now its giving a run time error 9 /sigh
  15. Well there is an annoying run time error 9 when you kill a monster in a party and here is how to fix it: SERVER SIDE: find ' Check for level up party member delete ``` ' Check for level up party member If Player(Attacker).InParty = True Then For X = 1 To MAX_PARTY_MEMBERS Call CheckPlayerLevelUp(Player(Attacker).Party.Member(X)) Next X End If ' Check for level up party member If Player(Attacker).InParty = True Then Call CheckPlayerLevelUp(Player(Attacker).PartyPlayer) End If ```add in ``` ' Check for level up party member If Player(Attacker).InParty = True Then For X = 1 To MAX_PARTY_MEMBERS If Player(Attacker).Party.Member(X) > 0 Then Call CheckPlayerLevelUp(Player(Attacker).Party.Member(X)) END IF Next X End If ``` I am not sure what the second part of the lvl up party code was used for so I deleted it. post here if there are any problems.
  16. fixed it now :D it was sending the wrong packet :D (now I need to get it to crop depending on size of party).
  17. ya currently it looks like this: [![](http://img515.imageshack.us/img515/4097/partyshowoff2png.jpg)](http://img515.imageshack.us/i/partyshowoff2png.jpg/) I'm just sorting out 1 random annoying bug which is when players info gets updated it takes up more then 1 party slot in the gui so it ends up like this XD zidsal 10/10 10/10 zidsal 10/10 10/10 zidsal 10/10 10/10 need to fix that is annoying as hell and after I fix that bug need to crop the interface so it resizes depending on the number of players in the party.
  18. Well Dan is having the day of Canada day (I think that is what he called it): But of course he wouldn't let me have the day off :rolleyes: so here is what I've been programming. [![](http://img40.imageshack.us/img40/1674/partyshowoff.png)](http://img40.imageshack.us/i/partyshowoff.png/) Next stage is to make it more visual pleasing :D any feedback?
  19. add in a choice to be LOLcat :azn:
  20. zidsal

    My Absence

    @Marsh: > Well if your addicted to wow, i don't expect you to be very active :P. patch 3.2 (1 coming out in a few months) got my unaddicted to WoW. To be honest Wow has gone into a shithold and blizzard are just trying to milk it for all its worth now. Which is evident in the fact that there are payed faction transfers now.
  21. @xLuna: > To make real fullscreen, like all the other game you would have to change most if not all of the engine. > > Or do it the lazy way and Maximize the form. not really the only real work would be moving all the forms to frmMirage anyone witrh 3 hours to kill could do it.
  22. game name: Haven ability for the navy to raid/setfire to pirate ships.
  23. @Desiderium: > "Critism is like Candy. You need it!" > > Too much is bad for you.. > > IE: Don't flame if it's a bad banner, etc.. ``` Critism flaming ```damn I've been coding too much. But I dont see why people take critism as flaming there too different thing. About time some people learn they aint perfect and there work can be improved.
  24. zidsal

    Kicked out

    this is robins new scam to get out of coding for projects but seroiusly tought to here that man is this the second or 3rd time you've been kicked out :rolleyes:
  25. @unnown: > wow this is old, we found this at the begining of ee :) this tutorial is a hell alot older then EE… it was around when pingu still owned ES.
×
×
  • Create New...