Jump to content

josk

Members
  • Posts

    567
  • Joined

  • Last visited

Profile Information

  • Location
    England

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

josk's Achievements

Newbie

Newbie (1/14)

  • Reacting Well
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

132

Reputation

  1. First day of the new Year and I am a winner already. Looking forward to the new engine, will carry on throwing things around in 4 til then. Happy New Year
  2. I don't even know what the f*** is going on with all the acronyms
  3. Will get from the workshop, thanks for this and the videos.
  4. josk

    YADC

    If you have not done so already I have used Jumper pathfinding library for LUA and found it worked well and was easy to intergrate. Just search google for it if needed.
  5. Lua, I think it is wise to stick with this scripting language unless something major intervenes. Autocomplete is a must.
  6. I'm one that sits on the sidelines, not much hobby time. I think a template other than FPS would be good even a third person like Torchlight. You could show how to load from one world to another, inventory system, melee and ranged combat. Tower derfense would also be good. A template would have to be pretty complete. Not sure Kickstarter would suceed, Udemy might be the way to go. Getting it advertised on the main LW site would be good with Josh phelping promote it, though that would need agreements in place. I do like the idea of paid templates and add-ons, TD template, inventory, ai. I have bought quite a few in the past. Good luck with it.
  7. josk

    Dwarf Beard

    Looks good, love anything with Goblins.
  8. josk

    Scripted Behavior

    +1 for behaviour trees.
  9. Like it, can see this has potential. Ran out of food, died on my way what looked like a berry bush. Is it and can you eat them yet? Maybe change the tree chopping so you chop if mouse is down. Have I just got a lazy finger though? Night came on quite fast the first time so died. Maybe you could have the rain put the fire out so you have to upgrade your fire. Will keep checking on this one.
  10. I would stick the Merc as a DLC for $11-$12. while keeping it on the workshop for $10 to drive people to the workshop that way.
  11. josk

    Games, games, games

    Maybe you can pick some games and ask the developer some questions like an interview, then from that other peole can ask questions and give ideas. Game of the week maybe. If it gets a group of people talikng about a game it will give motivation to everyone.
  12. Player controlled item is set to collision prop, and give it mass. item that gets hit, set to Collision trigger and give mass. SetGravity to nil on both if not needed. In the script.start function of the item being hit put Collision:SetResponse(10,Collision.Prop, Collision.Trigger) self.entity:SetCollisionType(10) in the script.collision function put collisiontype = entity:GetCollisionType() if collisiontype==Collision.Prop then self.entity:Hide() end Also in player item put function Script:Collision(entity, position, normal, speed) collisiontype = entity:GetCollisionType() if collisiontype==10 then self.entity:Hide() end end
  13. Collision Trigger only collides with Collision Character see the link http://www.leadwerks.com/werkspace/page/api-reference/_/command-reference/collision-r778
  14. I did a similar post some while ago and settled for Silo2 off steam in a sale. http://www.leadwerks.com/werkspace/topic/12243-recommend-a-simple-model-program/
×
×
  • Create New...