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 - Evil

Pages: [1]
1
Modification Help / Player Transforming
« on: September 29, 2007, 09:13:56 PM »
Ive been making lots of models latley for no reason and said to my self"why not make em in to somthing?" Like one of the models i made is a dragon-skeleton-spider stuff like that but i need to make a script for it so i can type like /Race Dragon and my player model will change to a dragon anyone know if this can be done and if so post a basic script for it? ill post pics of the models 2 marrow im on a diffrent computer right now. Thanks Guys  :cookieMonster:

2
Modification Help / Announce(%client,
« on: September 19, 2007, 07:50:04 PM »
Ok I Know Ive Asked Alot Latley And Im Sorry But Why Wont This Announce To Everyone?

Code: [Select]
function servercmdwarrior(%client){
         %client.player.tool[4] = nametoID(SwordItem);
messageClient(%client, 'MsgItemPickup', '', 4, nametoID(SwordItem));}
announce(%client,'','\c3You Have Become A Warrior!');
 

3
Modification Help / Looking For A Teacher(Scripting)
« on: September 16, 2007, 11:26:45 PM »
I Have No Idea Were This Would Go But I Was Wondering If Someone Could Teach Me How To Script Cool Things Not Weapons Like Uhhhh Teleporters-Wanted System-Stuff Like That Im Kinda Familar With Scripts But All The Scripting I Know Dont Work For Retail So Can Some One Please Teach Me? Theyl Get Cookies  :cookieMonster: :cookieMonster: :cookieMonster: :cookie: :cookie: :cookie: :cookie: :cookie:

4
Modification Help / Safe Triggers
« on: September 16, 2007, 07:03:24 PM »
Can Some One Tell Me Why This Doesnt Protect You When Your In It My Goals To Make A Safe Zone For Retail Like The One In RtB Heres The Code

Code: [Select]
////////TRAP BRICK: Safe\\\\\\\\
datablock ItemData(TrapSafeItem)
{
category = "Item";  // Mission editor category

equipment = true;

//its already a member of item namespace so dont break it
//className = "Item"; // For inventory system

// Basic Item Properties
shapeFile = "./shapes/blank.dts";
mass = 1;
density = 0.2;
elasticity = 0.2;
friction = 0.6;
emap = true;

//gui stuff
uiName = "Trap Brick: Safe";
iconName = "";
doColorShift = true;
colorShiftColor = "0.000 0.200 0.640 1.000";

// Dynamic properties defined by the scripts
image = "";
canDrop = false;
};

function SafeTrigger::onEnterTrigger(%this,%trigger,%obj)
{

if($Pref::Server::Weapons == 1)
{
%obj.client.safe = 1;
messageClient(%obj.client,"","\c5You are now in the safe zone");
}
}

function SafeTrigger::onLeaveTrigger(%this,%trigger,%obj)
{
if($Pref::Server::Weapons == 1)
{
%obj.client.safe = 0;
messageClient(%obj.client,"","\c5You are now in the warzone");
}
}

5
Suggestions & Requests / Cameras and Boat
« on: September 15, 2007, 07:19:23 PM »
Hello Im Suggesting This Because It Seemed Like A Cool Idea. The Idea Is To Make A Tool That Alows You To Say Hit A 1x1 And Then say A 1x4x6 And The 1x1 Is The Camera(Live Feed) And The 1x4x6 Is The Screen So If You Watch The Brick You Can See Anything The Camera Sees Like Some One Could Make An Arena And Make TV Screens For It Or like Screens For People At A DM That Dont Want To DM Or Anything Like This....


My Second Idea Is A Warship And Or A Canoe This Is What It Should Do.....

It Floats In Water(Water Acts As Land For The Boat)
It Has Like 3 Seats For The Canoe And Like 6 For The Warship Like A Roman Ship That Has 4 Seats For Slaves And 2 For A Slave Driver And The Captain Or Whatever So Its Pretty Much A Transport Ship
Last But Not Least It Should Have A Weapon In The Front Like A Cannon And The Canoe A Spear Or Somthing


Thats All I Got For Now I Know It Sounds Really Hard But It Will Be Worth It Once Its Done

6
Modification Help / Making /commands HELP
« on: September 13, 2007, 09:37:08 PM »
Ello Everyone Can Someone Post A Link/ Tutorial On How To Make /Commands like /sword gives a sword? Please Im Working On A Mod But Stuck At This

7
Suggestions & Requests / FlatLands-At Night
« on: September 05, 2007, 07:06:57 PM »
Can Some One Edit Flatlands To Night For Somereason When I Change the sky and ligting it doesnt work

8
Help / Mission Editor
« on: September 04, 2007, 10:49:31 PM »
Any One Got The Link To The Mission Editor Download And I Just Name the file editor.bat right or do i have to do it were i change the shortcuts name?

9
Help / Help With A Auto Join Script And Type Commands
« on: September 04, 2007, 08:09:22 PM »
Ok I Was Wondering If Anyone Could Post How To Make A Auto Minigame Joiner So If I Use It Anyone On Or Comes To My Server They'll Join The Minigame Auto

Second Is It Possible To Make It So If I Type Say.../warrior I Can Get Specific Items Like A Sword Sheld ect..? If So How

These Are Questions For Retail Thank You! In Advance

10
Help / Tree script
« on: June 25, 2007, 11:55:10 AM »
does anyone know were the script is for RtB that has the tree(the one u cut down)info im trying to change the model of it

11
AoT General / Noob questin
« on: April 16, 2007, 06:55:04 PM »
Does Badspot even still work on this game anymore?

Pages: [1]