Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - wolfspirit

1
General Discussion / Making a game (with unity3d)
May 23, 2010, 11:52:52 am
Hiya ppls,
I'm making a new game here with unity3d (a really epic, game-creation-thingy).
What I need are: people who have some experience with scripting (I'd prefar with javascripting), some game-artists and maybe someone who would help me out with doing the basics (generating the maps, storyline, stuff like that).
So far, I'm not far at all... :P I've got some basic stuff though.
You can download the project as far as it is here:
http://www.megaupload.com/?d=7AJNH0K2
I haven't found a good name yet, so... we'll get on that later.

features so far:
- Possibility to move freely (you can even fly (that's actually a bug =P))
- You can shoot with fire balls
- There is background music and sound
- There is a little main menu
- You can get shot and lose body-parts with it
- An own-made HUD-system
- A turret that slowly rotates towards the player and shoots it
- When falling of the area, you lose a life

You can always pm me if you have any questions about the project. ;D

(edit: added the features so far)

Greetz.
Wolfspirit
2
Chat / Bleh!...
April 01, 2010, 02:39:08 pm
Don't read this:
Spoiler: ShowHide
OMG!! You've just got pranked!! You actually read this!!!
OMFG!! This must be the best 1 April prank ever made!!! Hahaha!! You MUST feel so ashamed of your self!!!

That's what happens when I get bored... :uhm:
3
News / Suggestions / Feedback / Happy New Year!!!
December 31, 2009, 09:34:03 am
A happy new year to all off you!! (except for... *starts to read all names of members of CP)

(gelukkig nieuwjaar means Happy new year  :xD:)
4
Resources / Zombie
December 24, 2009, 11:13:58 am
Hiya guys,
I've started on making my first sprite and I'm not really sure if it is worth of finishing or not.. xP
This is what I've got for now:
5
Hiya,
I've created a little script, but it doesn't work proparly...
It should show the world map, and it does, but when I click on esc. it doesn't go back to the menu, so I've created a "Back" option, but still it doesn't work...
This is the script:
Spoiler: ShowHide
#==============================================================================
# ** World Map
#------------------------------------------------------------------------------
#  This wil show the world map
#==============================================================================

class World_Map
 #--------------------------------------------------------------------------
 # * Main Processing
 #--------------------------------------------------------------------------
 def main
s1 = "Back"
s2 = "test"
   # Make command window
   @command_window = Window_Command.new(160, [s1, s2])
   Graphics.transition(0)
   Audio.se_play("Audio/SE/" + Wolfspirit::SE, 100)    
   @sprite = Sprite.new
   @sprite.bitmap = RPG::Cache.picture(Wolfspirit::Picture4)
   Graphics.update
   Graphics.update
   Graphics.update  
   Graphics.update
   Graphics.update
   @sprite.bitmap = RPG::Cache.picture(Wolfspirit::Picture5)
   Graphics.update
   Graphics.update
   Graphics.update
   Graphics.update  
   Graphics.update  
   @sprite.bitmap = RPG::Cache.picture(Wolfspirit::Picture6)
   Graphics.update
   Graphics.update
   Graphics.update  
   Graphics.update
   Graphics.update
   @sprite.bitmap = RPG::Cache.picture(Wolfspirit::Picture7)
       # Execute transition
   Graphics.transition
   # Main loop
   loop do
     # Update game screen
     Graphics.update
     # Update input information
     Input.update
     # Abort loop if screen is changed
     if $scene != self
       break
     end
   end
   # Prepare for transition
   Graphics.freeze
   # If switching to title screen
   if $scene.is_a?(Scene_Title)
     # Fade out screen
     Graphics.transition
     Graphics.freeze
   end
 def update_command
   # If B button was pressed
   if Input.trigger?(Input::B)
     # Play cancel SE
     $game_system.se_play($data_system.cancel_se)
     # Switch to map screen
     $scene = Scene_Map.new
     return
   end
   # If C button was pressed
   if Input.trigger?(Input::C)
     # If command other than save or end game, and party members = 0
     if $game_party.actors.size == 0 and @command_window.index < 4
       # Play buzzer SE
       $game_system.se_play($data_system.buzzer_se)
       return
     end
     # Branch by command window cursor position
     case @command_window.index
     when 0  # item
       $scene = World_Map.new(false)
       # Play decision SE
       $game_system.se_play($data_system.cancel_se)
       # Switch to item screen
       $scene = Scene_Menu.new
     end
    end
   end
  end
end

Anyone who knows the problm?
6
Resource Requests / Need a good drawer
December 05, 2009, 11:47:04 am
(edited to make it a little easier to read it)
Hiya,
I've been searching for a while for someone to create a nice Title Screen for me.
And so, I'd like to ask you if it'd be possible to create an animated titlescreen.
It should contain these elements:
- A zombie-like creature sitting on the edge of a cliff. We see the zombie from his back, so his back is turned at us.
- His hairs should wave a little bit due to the wind. Also, some leaves should fly around because of the wind.
- There should be a postapocalyptic feeling about it.
- The Title "Split Soul", should be written on it.

It would be great if someone could even create this title screen non-animated.
Ofcourse, if someone want's to create it animated, free of charge, that would be really great.

Credits goes to the creator ofcourse.


Greetz     
7
Hey you guys,
I've edited some scripts and created one (a very small one) and what I've done works proparly, exept for some pictures that chould go after each other so that you see a small animation.
Do make that work proparly as well, I need to know how to put a wait between the pics...
Anyone who knows howe to?

Grtz
8
Script Requests / Dubble request
November 27, 2009, 01:33:40 pm
Hi,
I was actually thinking about a little system to play a writing se when text is being writed.
Well what I need is:
The system...duh
And the se ofcourse
If anyone could help me out that would be great!


Thanks in advance! :)