Hard Light Productions Forums
Off-Topic Discussion => General Discussion => Topic started by: The Avenger on September 25, 2001, 12:23:00 pm
-
hey i was searching through google for any refrence to volitions new game (yet to be named, but i was hoping that a website may have been spidered) anywayz i stumbled across http://www.volitionx.com/ (//"http://www.volitionx.com/") the from did not seem that searching i found 2 more links http://www.volitionx.com/users/adamp/maxscript/ (//"http://www.volitionx.com/users/adamp/maxscript/") and another one that links to an mp3, as u will see adams email address is at the bottom of the page so i gather it is a V website, any more ideas people?
-
Now I am curious...
-
Wow... nice work so far... now we need more details! (http://dynamic.gamespy.com/~freespace/ubb/noncgi/smile.gif)
------------------
Staff Member, Hard Light Productions ("http://www.3dap.com/hlp")
Creator / Project Coordinator: The Perfect Storm ("http://www.3dap.com/hlp/hosted/tps/")
TPS Forums Page - Click Here ("http://dynamic.gamespy.com/~freespace/ubb/forumdisplay.cgi?action=topics&forum=The+Perfect+Storm&number=15")
Think you've got killer vocal cords? Voice actors needed! Email me @ [email protected]
These detonators were a piece of junk! I even followed the directions... - Lt. Commander Snipes - Special Operations Command
-
Originally posted by Black Ace:
Wow... nice work so far... now we need more details! (http://dynamic.gamespy.com/~freespace/ubb/noncgi/smile.gif)
I got 4 words out of im when i asked it (http://dynamic.gamespy.com/~freespace/ubb/noncgi/biggrin.gif)
DaveB: I have no idea.
------------------
(http://www.3dap.com/hlp/hosted/inferno/headz.gif)
------------------
[email protected] Staff member of
Inferno,
Don't loose
your headz
over it.
Soc Inferno
Project Rebellion ("http://www.avengershome.co.uk/rebellionhtml/")
Gost of the past ("http://www.gotp.f2s.com/")
iqc 102628858
-
You get a 403 (not authorized) if you type this adress:
http://www.volitionx.com/users/toddm/ ("http://www.volitionx.com/users/toddm/")
Toddm being Todd Miller aka Wildwolf webmaster dude for [V].
Pez
[This message has been edited by Pez (edited 09-25-2001).]
-
The website is owned by [V].Check here: http://www.domainbank.net/whois.cfm?affiliateid=809 ("http://www.domainbank.net/whois.cfm?affiliateid=809")
Type in volitionx.com in the box.
Pez
-
Originally posted by Black Ace:
Wow... nice work so far... now we need more details! (http://dynamic.gamespy.com/~freespace/ubb/noncgi/smile.gif)
I managed to download that .ZIP file - I don't know if anyone else did or not, so here's the contents:
V-Isolate.ms
-------------------------
-- V-Isolate.ms
--
-- Isolate selected objects by hiding all others. Based on built-in
-- macroscript. Works with multiple objects.
--
-- Adam Pletcher - 12/13/99 - [email protected]
-- Art Director, Volition - [url="http://www.volition-inc.com"]www.volition-inc.com[/url]
-- - [url="http://www.volitionx.com/users/adamp/maxscript/"]www.volitionx.com/users/adamp/maxscript/[/url]
--
-- 2/8/00 - Commented out the Anim button disabling. Not sure it's a problem.
-- 2/13/00 - saved floater position in INI file
global hiddenObj = #()
global IsoView, IsoCamera
global iniFile = (getDir #plugcfg) + "\\VolitionScripts.ini"
global iniSection = "Isolate"
global rollPos = #(20,100)
-- function: existFile (filename)
-- returns true if file exists, false otherwise
fn existFile fname = (getfiles fname).count != 0
fn savePrefs =
(
setINISetting iniFile iniSection "pos1" (rollPos[1] as string)
setINISetting iniFile iniSection "pos2" (rollPos[2] as string)
)
fn loadPrefs =
(
if (getINISetting iniFile iniSection "pos1") == "" then
savePrefs()
rollPos[1] = (getINISetting iniFile INIsection "pos1") as integer
rollPos[2] = (getINISetting iniFile INIsection "pos2") as integer
)
fn NewIsoFloater =
(
Isolations = True
rollout IsoRoll ""
(
CheckButton CIso "UN-ISOLATE" Checked:True highlightColor:Yellow
on IsoRoll Close do
(
if Isolations == True then
(
UnIsolate ()
Isolations = False
)
else
(
IsoLations = False
)
)
on CIso changed state do
(
If IsoFloater != undefined then
(
CloseRolloutFloater IsoFloater
savePrefs()
)
)
on IsoRoll moved rp do
(
rollPos[1] = rp.x - 3
rollPos[2] = rp.y - 23
)
)
if IsoFloater == undefined then
(
IsoFloater = NewRolloutFloater "" 100 95 rollPos[1] rollPos[2]
AddRollout IsoRoll IsoFloater
)
else
(
IF IsoFloater != undefined then CloseRolloutFloater IsoFloater
IsoFloater = NewRolloutFloater "" 100 95 rollPos[1] rollPos[2]
AddRollout IsoRoll IsoFloater
)
)
Rollout IsoRoll "V-Isolate"
(
CheckButton CIso "Exit Isolation" Checked:True highlightColor:Yellow
on IsoRoll Close do
(
if Isolations == True then
(
Isolations = False
UnIsolate ()
)
Else
(
Isolations = False
)
savePrefs()
)
on CIso changed state do
(
If IsoFloater != undefined then CloseRolloutFloater IsoFloater
Unisolate()
savePrefs()
)
on IsoRoll moved rp do
(
rollPos[1] = rp.x - 3
rollPos[2] = rp.y - 23
)
)
fn Isolate =
(
AnimButtonState = False
-- AnimButtonEnabled = False
if IsoFloater == undefined then
(
IsoFloater = NewRolloutFloater "" 100 95 rollPos[1] rollPos[2]
AddRollout IsoRoll IsoFloater
)
else
(
CloseRolloutFloater IsoFloater
IsoFloater = NewRolloutFloater "" 100 95 rollPos[1] rollPos[2]
AddRollout IsoRoll IsoFloater
)
max select invert
for i = 1 to selection.count do
(
hiddenObj[i] = selection[i]
)
hide selection
clearSelection()
IsoCamera = GetActiveCamera ()
if (viewport.GetType() as string == "view_persp_user") then
IsoView = Viewport.GetTM()
max tool zoomextents
)
fn UnIsolate =
(
unhide hiddenObj
if (Viewport.GetType () as string == "view_persp_user") then
(
if IsoCamera != undefined then
(
max vpt camera
)
else
(
viewport.setTM IsoView
)
)
max tool zoomextents
)
-- Main
loadPrefs()
if Isolations == true then
(
UnIsolate ()
IF IsoFloater != undefined then (CloseRolloutFloater IsoFloater)
)
else
(
Isolate ()
)
----------------------------------------
end V-Isolate.ms
------------------
America, stand assured that Israel truly understands what you are going through.
"He who laughs last thinks slowest."
"Just becase you're paranoid doesn't mean they're not out to get you."
"To err is human; to really screw up you need a computer."
Creator of the Sandvich Bar ("http://michael.randelman.com"), the CapShip Turret Upgrade, the Complete FS2 Ship List and the System Backgrounds List (all available from the site)
[This message has been edited by sandwich (edited 09-25-2001).]
-
This is probably something for their newsletter VOX.
Registrant:
VOX (VOLITIONX-DOM)
2004 Fox Drive Suite B
champaign, IL 61280
US
Domain Name: VOLITIONX.COM
Pez
[This message has been edited by Pez (edited 09-25-2001).]
-
Sandwich: That's a script for 3D Studio Max.
Pez
[This message has been edited by Pez (edited 09-25-2001).]
-
Originally posted by Pez:
Sandwich: That's a script for 3D Studio Max.
Pez
[This message has been edited by Pez (edited 09-25-2001).]
Ya, I know.. I posted it because it took me a few retries to get it, so I thought that maybe it wasn't available before or something...
------------------
America, stand assured that Israel truly understands what you are going through.
"He who laughs last thinks slowest."
"Just becase you're paranoid doesn't mean they're not out to get you."
"To err is human; to really screw up you need a computer."
Creator of the Sandvich Bar ("http://michael.randelman.com"), the CapShip Turret Upgrade, the Complete FS2 Ship List and the System Backgrounds List (all available from the site)
-
First I just though "Maybe it's just like with volition.com, someone not with [V]. Then I saw the link to the file...
Hmm... wonder what happens when I trace it...
-
according to Adam Pletcher, its just an internal (http://dynamic.gamespy.com/~freespace/ubb/noncgi/v.gif) dumping ground...
------------------
Temporal Mechanics ("http://www.fs2temp-mech.co.uk")
[This message has been edited by Griffon UK (edited 09-25-2001).]
-
Updated 4/15/00
That is one hella old script... hmmm
------------------
-Director of the staff of Hidden Terror. ("http://www.hiddenterror.f2s.com")
-WebMaster of Imperial Productions ("http://www.imperialprod.f2s.com")
The fear always controls our attitude, let us fear no more!
-
I wonder if they used this making the FS ships?
-
Can anybody explain what it does?
-
hey griffon did u get through to adam ? can u icq me
-
i found a website after plenty of searching, if anyone can explain what the hell it is on about them please tell me! http://relentless.volitionx.com/guild/main.shtml ("http://relentless.volitionx.com/guild/main.shtml")
-
Sounds like a RPG diary to me. Everquest PK campaign? Plus some fun stuff they did/find/had it seems.
[This message has been edited by venom2506 (edited 09-25-2001).]
-
(http://dynamic.gamespy.com/~freespace/ubb/noncgi/biggrin.gif) Welcome to the world of pink dragons! With red teeth!
Oh how I've missed RPGs.
-
Originally posted by The Avenger:
i found a website after plenty of searching, if anyone can explain what the hell it is on about them please tell me! http://relentless.volitionx.com/guild/main.shtml ("http://relentless.volitionx.com/guild/main.shtml")
Apparently it's some sort of EverQuest-oriented....role-playing....thing! (http://dynamic.gamespy.com/~freespace/ubb/noncgi/confused.gif)
------------------
America, stand assured that Israel truly understands what you are going through.
"He who laughs last thinks slowest."
"Just becase you're paranoid doesn't mean they're not out to get you."
"To err is human; to really screw up you need a computer."
Creator of the Sandvich Bar ("http://michael.randelman.com"), the CapShip Turret Upgrade, the Complete FS2 Ship List and the System Backgrounds List (all available from the site)
-
Originally posted by sandwich:
Can anybody explain what it does?
That's what I want to know - and on the whole Volition X thing... I wonder why they didn't tell us about it, but kept it all public accessible. W3rd.
-
Whoa... wierd.
(http://www.gameznet.com/eq/ultra/pics/dainfrostreaveriv.jpg)
Must be a personal thing of Mark... http://relentless.volitionx.com/guild/info.html ("http://relentless.volitionx.com/guild/info.html")
-
is that mark? man those pics of the v website must be all fakes, volition people are all knights and dragons in a ****ty video game (http://dynamic.gamespy.com/~freespace/ubb/noncgi/biggrin.gif)
-
Originally posted by The Avenger:
is that mark? man those pics of the v website must be all fakes, volition people are all knights and dragons in a ****ty video game (http://dynamic.gamespy.com/~freespace/ubb/noncgi/biggrin.gif)
****ty? Everquest? You won't make friends saying that (http://dynamic.gamespy.com/~freespace/ubb/noncgi/tongue.gif)
-
i never heard of everquest
-
interesting
-
Originally posted by The Avenger:
i never heard of everquest
Wow... don't get out much huh? Asheron's Call? Ultima Online? (http://dynamic.gamespy.com/~freespace/ubb/noncgi/wink.gif)
-
huh? neverheard of any of them
-
MMORPGs......
-
If he hasn't heard of Everquest, do you think he knows what MMORPG stands for? (http://dynamic.gamespy.com/~freespace/ubb/noncgi/tongue.gif)
Massive Multiplayer Online RPG. (http://dynamic.gamespy.com/~freespace/ubb/noncgi/smile.gif)
-
does diablo count?
-
Well, yes and no. It is an RPG, but it's not solely online; in addition, the universe is not persistent (you can start new levels and such). In most MMORPGs, the universe/world stays the same, and there is only the one theatre of operation, where everything takes place.
-
the one I'm looking forward to: WOW (World of Warcraft).
-
well i have never encountered a game like everquet before then, i am gonna go back and play some freespace
-
Originally posted by The Avenger:
well i have never encountered a game like everquet before then, i am gonna go back and play some freespace
Haven't playing much of FreeSpace 2 now. Now I'm playing Red Faction. Mayeb its time to brush up on my flying skills.
------------------
GTD Excellence ("http://freespace.volitionwatch.com/excellence") Webmaster
NeoHunter< [b][email protected][/b] >
-
Originally posted by venom2506:
the one I'm looking forward to: WOW (World of Warcraft).
That one will fall, and will fall hard.
I'm really looking forward to EVE: The Second Genesis ("http://www.eve-online.com"). Role-playing + trading + stuff, and it's in space! YAH!
+ it's accepting beta applications.
-
Originally posted by Jabu:
That one will fall, and will fall hard.
Bwarf, when a blizzard game will "fall hard", I hope you'll give me a phone call (http://dynamic.gamespy.com/~freespace/ubb/noncgi/lol.gif)
-
Originally posted by venom2506:
Bwarf, when a blizzard game will "fall hard", I hope you'll give me a phone call (http://dynamic.gamespy.com/~freespace/ubb/noncgi/lol.gif)
Don't get too far from your phone.
-
Originally posted by Jabu:
Don't get too far from your phone.
I get you don't like blizzard? Wow is already really beautifull, I won't worry a single second about gameplay (I know blizzard games), and the background is already incredible. Plus it's already incredibly popular. But it's useless arguing, you don't like it, nothing I wll say will convince you. I don't care, I'm ready to pay the fee for this one.
-
MMORPGs suck - long live real RPGs! D&D all the way baby!