please do this for me

Talk about any Deus Ex game modification here, e.g. maps, package or a total conversion.

Moderator: Forum Guards

please do this for me

Postby Mercenary » Fri Oct 19, 07 9:42 am

im new to codeing but can some one make me some .UC files please (why uc? ill pull them apart and learn from its code)
this is what i would like

computersecurity - not hackable
computerPersonal - not hackable with working email topics
laser sighting for MP that works
computerpublic - working news topics
Player start that only works for one team

and this one might not be possable
guns that only work for a player with the right name
Mercenary
Newbie
 
Posts: 5
Joined: Fri Oct 19, 07 9:26 am

Postby Dae » Fri Oct 19, 07 11:38 am

Mercenary wrote:one make me some .UC files please

I think you need WOTGreal Exporter, which is a handsome tool for exporting resources from Unreal engine packages (.u, .utx, .dx, .uax, etc).
User avatar
Dae
Alpha
 
Posts: 12086
Joined: Sat Sep 06, 03 4:40 pm

Postby ~DJ~ » Fri Oct 19, 07 4:45 pm

i need help too.. can someone make a black jacket & black pant of Jc denton (specialy cozmo can u please make it? because u make that pink pant so i think u r expert..)
User avatar
~DJ~
Forum Super Hero
 
Posts: 3766
Joined: Tue May 22, 07 12:23 pm

Postby Mercenary » Fri Oct 19, 07 6:03 pm

thanks this sould help
Last edited by Mercenary on Fri Oct 19, 07 6:04 pm, edited 1 time in total.
Mercenary
Newbie
 
Posts: 5
Joined: Fri Oct 19, 07 9:26 am

Postby Cozmo » Fri Oct 19, 07 9:12 pm

Expert skinner? Thanks. :]

I'll have some skins ready by tomorrow and I'll show you how to use them. I can help you with some minor scripting too. (Explaining scripts etc)
Cozmo_RPG (v1 & v2)
MPConversations - A tool for creating multiplayer RPG stuff
Cozmo
Master
 
Posts: 1266
Joined: Tue Jun 28, 05 10:53 am
Location: UK

Postby ~DJ~ » Fri Oct 19, 07 9:17 pm

yes plz thank you :)
User avatar
~DJ~
Forum Super Hero
 
Posts: 3766
Joined: Tue May 22, 07 12:23 pm

=]

Postby Cozmo » Sat Oct 20, 07 3:55 pm

Ok, how does this look?

Image

I can write up a tutorial on how to do it, but not right now. :)
Attachments
JCBlack.zip
(90.15 KiB) Downloaded 343 times
Cozmo_RPG (v1 & v2)
MPConversations - A tool for creating multiplayer RPG stuff
Cozmo
Master
 
Posts: 1266
Joined: Tue Jun 28, 05 10:53 am
Location: UK

Postby ~DJ~ » Sat Oct 20, 07 7:53 pm

thanks dude :D
User avatar
~DJ~
Forum Super Hero
 
Posts: 3766
Joined: Tue May 22, 07 12:23 pm

Postby ~DJ~ » Sat Oct 20, 07 7:55 pm

well its a mod. :D i wanted JC denton to be in black when we put behindview 1 cheat :D anyways thanks :D
User avatar
~DJ~
Forum Super Hero
 
Posts: 3766
Joined: Tue May 22, 07 12:23 pm

Postby Cozmo » Sat Oct 20, 07 9:27 pm

It comes with player clothing if that's what you wanted. :?
Cozmo_RPG (v1 & v2)
MPConversations - A tool for creating multiplayer RPG stuff
Cozmo
Master
 
Posts: 1266
Joined: Tue Jun 28, 05 10:53 am
Location: UK

Postby ~DJ~ » Sun Oct 21, 07 5:15 pm

anyways thanks..it will be cool i will add in maps (and as u said in ur readme that its not mine own yes i agree) :D
User avatar
~DJ~
Forum Super Hero
 
Posts: 3766
Joined: Tue May 22, 07 12:23 pm

Postby Cozmo » Sun Oct 21, 07 9:24 pm

Good to hear it. :)

Mercenary

Some of those on that list are tricky, because they use windows and stuff. :( But I'll start with the easiest; the gun which only works for a certain player.

If you want to know anything about the code, just ask.

Code: Select all
//========================================
// NamedGun
//========================================
Class NamedGun extends DeusExWeapon;

var() String WeaponOwnerName;

function Fire(float Value)
{
   if(DeusExPlayer(Owner).PlayerReplicationInfo.PlayerName == WeaponOwnerName)
   {
      Super.Fire();
   }
   else
   {
      DeusExPlayer(Owner).ClientMessage("You're not permitted to use this weapon.");
   }
}

defaultproperties
{
}


^ Not tested btw.
Last edited by Cozmo on Sun Oct 21, 07 9:24 pm, edited 1 time in total.
Cozmo_RPG (v1 & v2)
MPConversations - A tool for creating multiplayer RPG stuff
Cozmo
Master
 
Posts: 1266
Joined: Tue Jun 28, 05 10:53 am
Location: UK

Postby Allan » Mon Oct 22, 07 3:59 pm

That should work, so far as I know. :)

I made something similar for Magus' 'Ban-Whip'. That kicked ass. ^_^
User avatar
Allan
Alpha
 
Posts: 4545
Joined: Wed Dec 21, 05 1:41 pm
Location: Northamptonshire, England.

Postby Mercenary » Thu Oct 25, 07 6:28 am

thanks for that code now how to work it
Last edited by Mercenary on Thu Oct 25, 07 8:47 am, edited 1 time in total.
Mercenary
Newbie
 
Posts: 5
Joined: Fri Oct 19, 07 9:26 am

Postby Mercenary » Fri Oct 26, 07 7:51 am

soz for double post but wouldnt let me edit mine fore 180 mins (i cant wait that long)

with the named gun code
Code: Select all
//========================================
// NamedGun
//========================================
Class NamedGun extends DeusExWeapon;

var() String WeaponOwnerName;

function Fire(float Value)
{
   if(DeusExPlayer(Owner).PlayerReplicationInfo.PlayerName == WeaponOwnerName)
   {
      Super.Fire();
   }
   else
   {
      DeusExPlayer(Owner).ClientMessage("You're not permitted to use this weapon.");
   }
}

defaultproperties
{
}

how do i make it set my name strate away? so i dont have to add it in unreal ed
Last edited by Mercenary on Fri Oct 26, 07 7:51 am, edited 1 time in total.
Mercenary
Newbie
 
Posts: 5
Joined: Fri Oct 19, 07 9:26 am

Postby Cozmo » Fri Oct 26, 07 10:41 pm

Put this in the default properties, along with your weapons variables:

Code: Select all
WeaponOwnerName="YourNameHere"
Cozmo_RPG (v1 & v2)
MPConversations - A tool for creating multiplayer RPG stuff
Cozmo
Master
 
Posts: 1266
Joined: Tue Jun 28, 05 10:53 am
Location: UK

Postby Mercenary » Sat Oct 27, 07 4:11 pm

that worked now how about a laser pointer working for MP? please?
Mercenary
Newbie
 
Posts: 5
Joined: Fri Oct 19, 07 9:26 am


Return to Modifications

Who is online

Users browsing this forum: No registered users and 3 guests
cron