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.

Messages - Tazero

1141
Script Requests / Re: Wonderin if you can help......
November 22, 2008, 04:07:39 pm
yes but it has to be compatible blizz  stuff plus his abs aswell as addons just as much as i need an xbox 360 controller mod :) btw the info on button assignment axes rotation ect is on the 51 page og the abs discussion
1142
Resources / Re: Lost_Hope's Drawing Service-BACK ONLINE!
November 22, 2008, 02:41:52 pm
I need a nice title hopefully an orb of water with X-Chronicles
                                                                 Heroes Of Heaven
Under it as well the words would be orbbed as woll Plz :)
1143
RPG Maker Scripts / Re: Blizz-ABS vs. XAS
November 22, 2008, 02:35:32 pm
Babs is better than XAS cuz xas if flashy yes possibly more compatible with non blizz related scripts but at the same time very har for n00b scripter to use :)
TAHARO VOTE GOES TO: Daddadadadadaaaaaaddddaaaaaadadadadddadadadadddaaaaaa Blizz!
1144
Script Requests / Wonderin if you can help......
November 22, 2008, 10:33:21 am
I was wondering if there was a script to call a Gpad button And make your character jump i actually want to make a custom control set if it is easily configurable
1145
Script Requests / Need Xas client
November 22, 2008, 09:47:24 am
I want to use blizz but im comparing to how well Xas is worked with Never really used it....
1146
New Projects / Re: X-Chronicles H-O-H
November 22, 2008, 04:54:19 am
Ty for the Feedback  :haha:
1147
Script Requests / Music Script
November 21, 2008, 03:40:49 pm
I was wondering if there was a way to play an instrument in game for specific things to happen Please if there is could you write it for me :)
1148
RMXP Script Database / Re: [XP] Blizz-ABS
November 21, 2008, 03:38:03 pm
so it is possible?


Xbox 360 controller properties
just in Case :)
Axis list
Spoiler: ShowHide
Z-Axe, Triggers LT=- RT= +
XRotaion Left ,Right on the Right JStick= - So Left = +
YRotation Is Of Course Up and down on the right jstick. up = + down = -
X,y Axis is the left jstick :)
As well as Button Number goes as button name then gamepad number such as  a,1
A,1 B,2 X,3 Y,4 Lb,5 RB,6 Back,6 Start,7 LClick,8 Rclick,9

1149
RMXP Script Database / Re: [XP] Blizz-ABS
November 20, 2008, 06:48:21 am
+ The xbox 360 controller has z axis x,y, and joystick click compatibility
Spoiler: ShowHide
So why wouldnt it work or is rgss not compatible with axis rotations and pressures meters?
1150
New Projects / X-Chronicles H-O-H
November 20, 2008, 03:42:38 am
Background story

As your Character Travels through out the Lands of Tektile your character learns he is more than a warrior that he will have to Save people fight make tough Decisions as well as make do with what he has. In his Quest of Searching for the X-Chronicles Said to be tell the stories of the Extinct Tektilian Race and you must find Some clue as to where it is hidden As [Character name here] helps Brandon find the gem of ice , Fire, Water, and Wind. As you feel Darkness convcerge on the Lands of Tektile, You are the Last hope. Find you Destiny or Forever shall Tektile Die...


--------------------------------------------------------------------------------





The characters


Alucard

Place : Main Char
Race: Human
Class: Heaven Fighter
Age: 20
Gender: male
Speciality: Daring Decisions
Background: A simple Guy not much to talk though he reveals no more than he wishes to his Team is left in the shadows when it comes to his past.

Brandon

Place: Co Main Char
Race: Human
Class: Daggerist
Age: 22
Gender: male
Speciality: Stealth
Background: Mysteriously he appears after you talk the the lady in the church. As you talk to him he asks if with help him you happily agree as the story will not continue without him.....

Leo

Race: Human
Class: Warrior
Age: 20
Gender: male
Speciality: Close up Fighting
Background: You randomly help him after you see he is in trouble in the cave of ICE.
No more shall be reavealed with the character as i will Have screenies sometime soon.




--------------------------------------------------------------------------------

Features

Atb or Tbs!!!
Wcw Cms!
Ddns System add-on
Possible to change window skins by unlocking them
Possible to change main actor suit
Devastatingly sprited Monsters
Possible Instrument sciprt.


--------------------------------------------------------------------------------

Creds
Me for development
Wcw for edms, ATES
Blizz for Blizz-art Hack, Babs, For inspiring me to make a game with the right Scripting method
Berans for the interactive instrument Script.
Fantasist for UMS :)
Graphics_Sounds
Deathlock for ..........Can't remember -.- _'_
Fantasist for windowskins and a bunch of utha stuff
LOS for ........
Satoh For Alucard 1,2 and Random guy
Winkio
Game_Guy For brandon
And everyone else on the forum ;)
--------------------------------------------------------------------------------


Title Graphic ;)
Spoiler: ShowHide

Demo Coming Soon
(Around the Abs show-down contest end : )
New title screen No new post :)
1151
RMXP Script Database / Re: [XP] Blizz-ABS
November 20, 2008, 03:09:06 am
JUst wondering is joystick compatibility going to be in 2.0? I want my game to be more of "Hey this is Jstick compatible and i just so fortunatly have YAY me"
1152
Script Requests / Re: Play Movie Files?
November 20, 2008, 03:03:27 am
Spoiler: ShowHide
###########################################################
class Scene_Movie
###########################################################
#Created by SoundSpawn
###########################################################
#Fixed by Popper
###########################################################
#Instruction
#  1) Movies must in in a new folder called Movies in your directory
#  2)If you call this script from and event (EG:    Call Script: $scene = Scene_Movie.new("INTRO") )
#  3) Have fun playin movies with this script!!!
###########################################################
###########################################################
###########################################################

def initialize(movie)
@readini = Win32API.new 'kernel32', 'GetPrivateProfileStringA', %w(p p p p l p), 'l'
@movie_name = Dir.getwd()+"\\Movies\\"+movie+".avi"
main
end

def main
game_name = "\0" * 256
@readini.call('Game','Title','',game_name,255,".\\Game.ini")
game_name.delete!("\0")
@wnd = Win32API.new('user32','FindWindowEx','%w(l,l,p,p)','L')
@temp = @wnd.call(0,0,nil,game_name).to_s
movie = Win32API.new('winmm','mciSendString','%w(p,p,l,l)','V')
movie.call("open \""+@movie_name+"\" alias FILE style 1073741824 parent " + @temp.to_s,0,0,0)
@message = Win32API.new('user32','SendMessage','%w(l,l,l,l)','V')

@detector = Win32API.new('user32','GetSystemMetrics','%w(l)','L')
@width = @detector.call(0)
if @width == 640
fullscreen
Graphics.update
sleep(0.1)
Graphics.update
sleep(0.1)
Graphics.update
sleep(0.1)
fullscreen
end


status = " " * 255
movie.call("play FILE",0,0,0)
loop do 
sleep(0.1)
@message.call(@temp.to_i,11,0,0)
Graphics.update
@message.call(@temp.to_i,11,1,0)
Input.update
movie.call("status FILE mode",status,255,0)
true_status = status.unpack("aaaa")
if true_status.to_s != "play"
break
end
if Input.trigger?(Input::B)
$scene = Scene_Map.new
break
end
end
$scene = Scene_Map.new
end

end

Yeaaa Thought you could use that cuz i Am! :ninja: