Tagged Questions
11
votes
5answers
1k views
Resources for UnrealScript
Now that the Unreal Development Kit is out and free to use by anyone, I am pretty excited to try it out. My understanding is that the programming is done through scripting in UnrealScript, I am ...
2
votes
0answers
313 views
UDK HUD problem
hello
im trying to add a new element to the hud
its spoused to be a compass that should function like the minimap
Ive add this code to the main hud.swf
var DcompassContainer:MovieClip = ...
1
vote
2answers
324 views
In Unrealscript how do I have a config value for a resource in a class set a property of a component?
I have a sound cue that I want played whenever the player does a specific action. I've got it playing fine and everything but I want to make the resource that is used come from a configuration file ...
1
vote
2answers
673 views
How difficult is UnrealScript to learn? [closed]
With an upcoming project at work, we will be needing to use UnrealScript to create some simulations for a client.
I've done NWScript before, I'm well versed in .NET, with lots of experience in both ...
1
vote
2answers
1k views
Getting Started with UDK [closed]
I've been trying for a couple of days now to learn UDK, but I seem to be stuck at making that leap to understanding how everything works together. I understand the syntax, that's all well and good, ...
1
vote
1answer
110 views
UDK Where did AnimatedCamera go?
I'm porting a game from UT3 to UDK. One of the classes is a subclass of AnimatedCamera. However, AnimatedCamera seems to be missing from the UDK, as the compiler kindly tells me:
Error, Superclass ...
0
votes
1answer
140 views
Connect to a server in UnrealScript
I've created a custom matchmaking server for my UDK game in Lisp, with an UnrealScript front end that uses TcpLink. The process is very simple, with just a name and some params being sent to the Lisp ...
0
votes
1answer
114 views
How can i… listen an events from native DLL in UnrealScript
Grteetings.
I've a question. Is this possible to listen events from native DLL in UnrealScript,when using Dllbind?
0
votes
2answers
376 views
Debugging UDK using nFringe in Visual Studio 2005
This is a pretty niche question, so I am not expecting a huge response...
Basically, I am learning how to use the UDK by following some tutorials, namely this one:
...
0
votes
1answer
145 views
does anyone know how to begin an unreal script?
I'm just stuck with unreal script, i mean i just want to write a class that logs down "i'm alive" when the game starts, dows any one know how can i do that? my ultimate goal is to extend a camera ...
0
votes
1answer
123 views
UDK - Type mismatch in 'If' for MyInventory functil
I am having trouble getting a pawn class to compile.
The error is Type mismatch in 'If' in the line:
if( MyInventory[inc] == int (x) );
CODE:
[CODE]class BSAPawn extends UTPawn;
var() array ...
0
votes
1answer
496 views
UDK “Error, Unrecognized member 'FocalPoint' in class …”
I'm porting a UT3 game to UDK.
It uses a large code library and I'm getting this compiler error:
C:\UDK\UDK-2010-03\Development\Src\FixIt\Classes\ZController_FireWeapon.uc(129) : Error, ...
0
votes
2answers
471 views
UDK “Error, 'DefaultMesh': Bad command or expression”
I'm porting UT3 code to UDK, and I am getting the following compile error with the UDK compiler:
C:\UDK\UDK-2010-03\Development\Src\FixIt\Classes\ZPawn.uc(25) : Error, 'DefaultMesh': Bad command ...
0
votes
2answers
560 views
UDK “Error, Unrecognized member 'OpenMenu' in class 'GameUISceneClient'”
Upon compiling, I am getting the following error:
C:\UDK\UDK-2010-03\Development\Src\FixIt\Classes\ZInteraction.uc(41) : Error, Unrecognized member 'OpenMenu' in class 'GameUISceneClient'
Line ...
0
votes
1answer
250 views
UDK “Error, Accessing a member of _'s within class through a context expression requires explicit 'Outer'”
I get the following error in the UDK Frontend when I try to make my project:
C:\UDK\UDK-2010-03\Development\Src\FixIt\Classes\ZInteraction.uc(58) : Error, Accessing a member of GameUISceneClient's ...
0
votes
1answer
263 views
Cannot place KActorSpawnable - UnrealScript
I hope someone here can help me, i been trying to create an placeable actor that will be player controller, but when I try to add it via the "Actor Classes" windows, there is nothing there.
class ...