Author Topic: Volition X?  (Read 6396 times)

0 Members and 1 Guest are viewing this topic.

Offline The Avenger

  • Banned
  • 27
    • http://www.microsoft.uk
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/  the from did not seem that searching i found 2 more links 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?
I am Jesus

 

Offline Fury

  • The Curmudgeon
  • 213
Now I am curious...

 

Offline Black Ace

  • The Traveler
  • 28
    • http://www.3dap.com/hlp
Wow... nice work so far... now we need more details!  

------------------
Staff Member, Hard Light Productions
Creator / Project Coordinator: The Perfect Storm
TPS Forums Page - Click Here
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
Staff Member,Hard Light Productions

Creator / Project Coordinator:The Perfect Storm

Black Ace 2.1a - "I've been beyond the rim... and back!"

 

Offline Darkage

  • CRAZY RENDER RABBIT
  • 211
 
Quote
Originally posted by Black Ace:
Wow... nice work so far... now we need more details!  


I got 4 words out of im when i asked it

DaveB: I have no idea.


------------------
                                   
------------------
                            [email protected]                          Staff member of
Inferno,
Don't loose
your headz
over it.    
Soc Inferno

Project Rebellion
Gost of the past
iqc 102628858
[email protected]
Returned from the dead.

 

Offline Pez

  • 26
You get a 403 (not authorized) if you type this adress:
 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).]

 

Offline Pez

  • 26
The website is owned by [V].Check here: http://www.domainbank.net/whois.cfm?affiliateid=809

Type in volitionx.com in the box.

Pez
   


 

Offline Sandwich

  • Got Screen?
  • 213
    • Skype
    • Steam
    • Twitter
    • Brainzipper
 
Quote
Originally posted by Black Ace:
Wow... nice work so far... now we need more details!    

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
-------------------------
Code: [Select]
-- 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, 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).]
SERIOUSLY...! | {The Sandvich Bar} - Rhino-FS2 Tutorial | CapShip Turret Upgrade | The Complete FS2 Ship List | System Background Package

"...The quintessential quality of our age is that of dreams coming true. Just think of it. For centuries we have dreamt of flying; recently we made that come true: we have always hankered for speed; now we have speeds greater than we can stand: we wanted to speak to far parts of the Earth; we can: we wanted to explore the sea bottom; we have: and so  on, and so on: and, too, we wanted the power to smash our enemies utterly; we have it. If we had truly wanted peace, we should have had that as well. But true peace has never been one of the genuine dreams - we have got little further than preaching against war in order to appease our consciences. The truly wishful dreams, the many-minded dreams are now irresistible - they become facts." - 'The Outward Urge' by John Wyndham

"The very essence of tolerance rests on the fact that we have to be intolerant of intolerance. Stretching right back to Kant, through the Frankfurt School and up to today, liberalism means that we can do anything we like as long as we don't hurt others. This means that if we are tolerant of others' intolerance - especially when that intolerance is a call for genocide - then all we are doing is allowing that intolerance to flourish, and allowing the violence that will spring from that intolerance to continue unabated." - Bren Carlill

 

Offline Pez

  • 26
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).]

 

Offline Pez

  • 26
Sandwich: That's a script for 3D Studio Max.

Pez

[This message has been edited by Pez (edited 09-25-2001).]

 

Offline Sandwich

  • Got Screen?
  • 213
    • Skype
    • Steam
    • Twitter
    • Brainzipper
 
Quote
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, the CapShip Turret Upgrade, the Complete FS2 Ship List and the System Backgrounds List (all available from the site)
SERIOUSLY...! | {The Sandvich Bar} - Rhino-FS2 Tutorial | CapShip Turret Upgrade | The Complete FS2 Ship List | System Background Package

"...The quintessential quality of our age is that of dreams coming true. Just think of it. For centuries we have dreamt of flying; recently we made that come true: we have always hankered for speed; now we have speeds greater than we can stand: we wanted to speak to far parts of the Earth; we can: we wanted to explore the sea bottom; we have: and so  on, and so on: and, too, we wanted the power to smash our enemies utterly; we have it. If we had truly wanted peace, we should have had that as well. But true peace has never been one of the genuine dreams - we have got little further than preaching against war in order to appease our consciences. The truly wishful dreams, the many-minded dreams are now irresistible - they become facts." - 'The Outward Urge' by John Wyndham

"The very essence of tolerance rests on the fact that we have to be intolerant of intolerance. Stretching right back to Kant, through the Frankfurt School and up to today, liberalism means that we can do anything we like as long as we don't hurt others. This means that if we are tolerant of others' intolerance - especially when that intolerance is a call for genocide - then all we are doing is allowing that intolerance to flourish, and allowing the violence that will spring from that intolerance to continue unabated." - Bren Carlill

 

Offline Jabu

  • One of our many cases
  • 29
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   dumping ground...

------------------
Temporal Mechanics

[This message has been edited by Griffon UK (edited 09-25-2001).]
What does Kazan use for birth control?
His personality!

- Ace

 

Offline DragonClaw

  • Romeo Kilo India Foxtrot
  • 210
Updated 4/15/00


That is one hella old script... hmmm

------------------
    -Director of the staff of Hidden Terror.
    -WebMaster of Imperial Productions

   
Quote
The fear always controls our attitude, let us fear no more!

 

Offline Grey Wolf

I wonder if they used this making the FS ships?
You see things; and you say "Why?" But I dream things that never were; and I say "Why not?" -George Bernard Shaw

 

Offline Sandwich

  • Got Screen?
  • 213
    • Skype
    • Steam
    • Twitter
    • Brainzipper
Can anybody explain what it does?
SERIOUSLY...! | {The Sandvich Bar} - Rhino-FS2 Tutorial | CapShip Turret Upgrade | The Complete FS2 Ship List | System Background Package

"...The quintessential quality of our age is that of dreams coming true. Just think of it. For centuries we have dreamt of flying; recently we made that come true: we have always hankered for speed; now we have speeds greater than we can stand: we wanted to speak to far parts of the Earth; we can: we wanted to explore the sea bottom; we have: and so  on, and so on: and, too, we wanted the power to smash our enemies utterly; we have it. If we had truly wanted peace, we should have had that as well. But true peace has never been one of the genuine dreams - we have got little further than preaching against war in order to appease our consciences. The truly wishful dreams, the many-minded dreams are now irresistible - they become facts." - 'The Outward Urge' by John Wyndham

"The very essence of tolerance rests on the fact that we have to be intolerant of intolerance. Stretching right back to Kant, through the Frankfurt School and up to today, liberalism means that we can do anything we like as long as we don't hurt others. This means that if we are tolerant of others' intolerance - especially when that intolerance is a call for genocide - then all we are doing is allowing that intolerance to flourish, and allowing the violence that will spring from that intolerance to continue unabated." - Bren Carlill

 

Offline The Avenger

  • Banned
  • 27
    • http://www.microsoft.uk
hey griffon did u get through to adam ? can u icq me
I am Jesus

 

Offline The Avenger

  • Banned
  • 27
    • http://www.microsoft.uk
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
I am Jesus

 

Offline Nico

  • Venom
    Parlez-vous Model Magician?
  • 212
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).]
SCREW CANON!

 

Offline Jabu

  • One of our many cases
  • 29
  Welcome to the world of pink dragons! With red teeth!

Oh how I've missed RPGs.

 

Offline Sandwich

  • Got Screen?
  • 213
    • Skype
    • Steam
    • Twitter
    • Brainzipper
 
Quote
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

Apparently it's some sort of EverQuest-oriented....role-playing....thing!  



------------------
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, the CapShip Turret Upgrade, the Complete FS2 Ship List and the System Backgrounds List (all available from the site)
SERIOUSLY...! | {The Sandvich Bar} - Rhino-FS2 Tutorial | CapShip Turret Upgrade | The Complete FS2 Ship List | System Background Package

"...The quintessential quality of our age is that of dreams coming true. Just think of it. For centuries we have dreamt of flying; recently we made that come true: we have always hankered for speed; now we have speeds greater than we can stand: we wanted to speak to far parts of the Earth; we can: we wanted to explore the sea bottom; we have: and so  on, and so on: and, too, we wanted the power to smash our enemies utterly; we have it. If we had truly wanted peace, we should have had that as well. But true peace has never been one of the genuine dreams - we have got little further than preaching against war in order to appease our consciences. The truly wishful dreams, the many-minded dreams are now irresistible - they become facts." - 'The Outward Urge' by John Wyndham

"The very essence of tolerance rests on the fact that we have to be intolerant of intolerance. Stretching right back to Kant, through the Frankfurt School and up to today, liberalism means that we can do anything we like as long as we don't hurt others. This means that if we are tolerant of others' intolerance - especially when that intolerance is a call for genocide - then all we are doing is allowing that intolerance to flourish, and allowing the violence that will spring from that intolerance to continue unabated." - Bren Carlill