Tagged Questions
The unrealscript tag has no wiki summary.
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
305 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
320 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
667 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
109 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 ...
1
vote
10answers
518 views
Which programming languages support states on the language-level?
UnrealScript has always impressed me, somewhat, with it its intrinsic support for states (and latent functions) by grouping/overloading functions and fields into blocks like:
state() SomeState
{
...
0
votes
1answer
17 views
Creating UDK projects in external folders
I am using a school computer and asked the administrators to install UDK on it. While reading the documentation, I came across the folder structures. It tells me that I need to put my source inside ...
0
votes
1answer
133 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
113 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
0answers
123 views
Using .NET with UnrealScript
UDK uses .NET. So maybe it is possible somehow to use .NET from UnrealScript?
It is really great to use C# with UnrealScript.
One certainly could build C++ layer to interact between .NET and ...
0
votes
2answers
370 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
143 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
121 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
493 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
463 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
559 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
249 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 ...