ActionScript 2.0 :: Organizing An RPG Equipment System Scriptwise?
Apr 13, 2005
How should I go about organizing the scripts for an invenotry system in an RPG? Should I use arrays for this? I've already assembled a basic movement system and a basic item inventory system... now how do I go about assembling this system?
View 5 Replies
Similar Posts:
Jul 14, 2010
I want to create a game using pure AS in FlashDevelop.
The problem is that there are some methods I want to use, and because I don't like copying/pasting code, i decided to define in classes. Here is an example:
[Code].....
When I hit compile, I get an error like Call to a possibly undefined method distance through a refference with static type Class.
View 4 Replies
Jan 24, 2011
I've recently started practising test driven development - thus far I've been working on a library project, so I've organised my FlexUnit tests in a separate FlexBuilder 3 project, linking against my library's swc.Now I'm working on a web app and wondering how best to organise the tests for this. At the moment I've put them in a src/test package in the project I'm testing, with the test runner application at the same level as the default application. Is this the best way to do it, or should I have a separate test project and link in the source for the application I'm testing?
View 1 Replies
Mar 6, 2010
I'm making the game Breakout as an AS3 application using OOP. I am getting very confused though. I know that objects should be only responsible for themselves. But this is where I get stuck, they need to communicate as some level to add and remove screens, and I am getting majorly confused as to what is going too far, when it could maybe achieved in a simpler more OOP way. I've worked out the hierarchy of my classes, in terms of where they are being added (I think). I've added a screenshot of the hierarchy.
Have I got the order right based on OOP principles? Like, Introscreen will listen for play being pressed then call a method of the document class that will remove introscreen and then attach gamescreen. Is that right? Another thing that puzzples me. It seems to me if I made a level and put the paddle and the ball in that, then arranged all the bricks in that level, that I'd be duplicating work (based on the fact I need paddle and ball for level 2 also). So it would be best if I could have gamescreen with paddle and the ball and then add level1/2/3 to display list which would therefore set up the appropriate brick placement. But then, wouldn't that mean that I couldn't do hittests because my level 1/2 or 3 wouldn't be a sibling to the bat and the ball, them residing as a sibling in the level's parent class?
View 2 Replies
Apr 19, 2010
Basically an array if fed to callThumbs() which iterates through it and compares the entries with preloaded XML _my_images. If match is found, it's sent to processXML which loads all relevant info and loads a .jpg thumbnail. All this is then fed to createCell which creates a specific cell with position values depending on x_counter and y_counter values (4 cells in a row) and adds the cell into a container _container_mc.
The Problem: This all works fine and looks fine, the problem is that the cells within the container do not display in descending order. They are in random order, probably because some of the .jpg's takes longer to load etc. How do I easily organise the cells within the container in descending order by the XML .id value? Or how do I tell Flash to wait till the thumbnail and data is loaded and the cell created and added?
//Flash (AS3)
function callThumbs(_my_results:Array):void { // selector = 1 for specific items, 2 for search items
var _thumb_url:XML;
[code]....
View 1 Replies
Apr 19, 2010
What's the best way to organize functionality modules in a flex project? I saw some people put all modules in one view stack ,and so the application interface is only load once, but when the application get larger, the whole compiled swf would be very big. If we put swfs in different pages, we pass request parameters through HTTP request, we lost the benefits from flex RPC services, slow loading, and we can't see any superior comparing to php,asp,jsp... what's the best practice to organize front end architecture?
View 3 Replies
Apr 11, 2009
I really want to start work on a game idea I have using PaperVision.The largest/most complex thing in Flash I have ever made is probably my last project which is an interactive school map for my A Level [URL] . Check it out, its a little laggy in the browser but it is designed to run in the flash projector from the desktop.I used around 10 .as files and dumped all my graphics in 1 .fla as sprites and stuff.This is ok (...ish) as I had a large 'main' file and a massive 'main3d' file which (324 lines which is big for me :S lol).
Im planning on making it a big, 3D adventure style game with lots of elements and AI things. But how do I organise my code? If I continue like this, I'm going to have a few mahasssive files and lots of small ones.How to the 'pros' organise their stuff? All the time I see source codes for small experiments which are great, but I have never seen any layout overviews of what files they used and what kinds of things they put in them. I also have no idea how complex environments, where objects need to update to add/remove elements without having to check the position of the player every frame.
View 5 Replies
Oct 7, 2010
In an attempt to organize my code, I'm trying to split up my (lengthy) main controller class into separate files, but my new files must still have access to the variables and functions of the main controller class.I'm trying to cut and paste code from my controller class into a new class/file, allowing the controller class to call the new class, and allowing the new class to have access to the controller class's properties and function.Assuming I'm not totally bludgeoning appropriate design patterns, below is my unsuccessful attempt at accomplishing this task:
package
{
import flash.display.Sprite;
import flash.events.Event;
[code]....
View 2 Replies
Mar 5, 2010
I have a task. I must make an interface/application with a list of songs, alphabetically sorted by Genre / Mood. That also gives you the possibility to add more Genres/Moods and it should be easy to browse them. When a specific Genre/Mood is selected, the corresponding tracks appear, and when a specific track is selected, it should play in a player (see description below), and information about this track should also be displayed.
There should also be a Player included with Start/Pause/Stop buttons. It should be possible to see the full length of that track (time duration). There should be a loading bar and visible progression bar (like on Youtube) and it should be possible to drag in the progress bar to get to the specific point of the track. Is there a template for this sort of thing? Or how do I make this sort of menu? I guess it is some XML combined with some ActionScript?
View 0 Replies
Nov 30, 2009
I have more sites, sites have some users, and each user has separate application folder
What I want is put application folder in a defined folder like following
C:FMISsiteAapplicationsuser1
C:FMISsiteAapplicationsuser2
C:FMISsiteBapplicationsuser1
C:FMISsiteBapplicationsuser2
etc...
I think for this I need to create virtual hosts.
View 2 Replies
Aug 7, 2009
I got a textfile who i am reading on a serverside script and passing it as a script to my client side as3 code. The problem is that i am using characters like ä,ö,ü,ß and this isn't well displayed. I tried System.useCodePage but the compiler complains about : 1120: Access of undefined property 'System'. It doesnt matter if I tried this on the first line of the 'Action' in the first scene or in the first line of the first .as file i am loading. (btw i am only working with .as file and not in the timeline). When i am importing flash.System.* the compiler complains he dont know useCodePage.
View 3 Replies
Dec 29, 2010
Is it possible to make this a mask? The system contains one movieclip of a circle called ball, also a class called ball and a class called particle. I want the particle system movieclips to display an image...I'm sure this is possible...just have not been able to find a way. A little backround, I'm a completely selftaught n00b when it comes to AS3, but I'm grasping it fairly well... the tutorial is on this website, called A Simple Particle System Using Actionscript 3.
View 0 Replies
Sep 22, 2010
I build a web site in flex that some time take input. Will this website works on Touch Screen environment(KIOSK).My question is we have to make any change to handle input such as prompt on screen keyboard when input fields are get focused or it will manage my device and OS of system(KIOSK, Touch screen system) itself.
View 2 Replies
Jun 2, 2009
When I use IK system to build a man and move it to perform poping, I found the more poses I gave to it the more its arms and legs would drift away. I didn't use alt and mouse to move the limbs. I only use my mouse to pose it. But WHY after I finished some poses, the limbs of the figure would get loosened?What was worse, If i adjusted those limbs(by alt and left click-drag) to fix the drift, the poses I have finished would be messed. So, what should I do?
View 3 Replies
Mar 5, 2012
I'm making a sort of interactive graphic novel and was wondering how would I implement some sort of inventory system. Btw, I'm using Actionscript 2.0
----INVENTORY SYSTEM 001----
You see, I would like the ending screen to show a summary of what the player has done in the game.And certain points in the game would add certain 'items' into the inventory which will in turn affect what is displayed in the summary screen.The 'items' here being words or phrases.eg:
Quote:
You _______ with the _______ and proceeded to _______. But you _______.
For example, if the player chooses Path A, summary screen will show: eg:
Quote: You stabbed the unicorn with the shark fin and proceeded to shag your mistress. But you ate a pecan pie.But if the player chooses Path B, the summary screen will instead show eg:
Quote: You stabbed the tree with the shark fin and proceeded to shag the corned beef. But you smashed a watermelon and caused a civil war.
----INVENTORY SYSTEM 002----
I think with a few modifications, this inventory system could also be used to affect the outcome of the movie depending on what item the player currently owns? Please enlighten me if this system is feasible.
The player is given a choice to pick up a spoon or a fork in the beginning of the game.The player is later faced with a soup crisis. If the player has previously picked up a spoon, the soup can be consumed. Otherwise, the soup is left well alone.
View 13 Replies
Mar 6, 2012
is System.gc() recognized in AIR 3 for iOS ? Or am I putting on a line a code that's just for pasterity ? I have made every effort to dispose(),null and removeEventListener any unused Object, hence to be able to tell the Garbbage Collector to "go ahead" is a really awesome feature.
View 5 Replies
Jun 25, 2009
Is there a way to get a unique machine-specific system ID in a Flex application running in a browser, so that is can be used for example to determine if the machine is properly licensed to run the application?
View 5 Replies
Jun 6, 2011
I'm building image processing or mapping system kinda like google map except we have our own HD images so i'm not sure what is the best way to do this in .NET here is what im trying to do Mapping web application build in .NET i've High resolution images , the user first load the selected area a full scaled image should be loaded 100% (original image) then he Zoom to the area he want, then he can move around this area almost like google map
1.user select area - full scaled image loaded
2.user zoom to random area - (i will receive some values for X, Y, etc.. in query string then i will extract these values and zoom/return the image based on these values)
So i'm not sure what is the ideal solution for this is it just zoom/re-size image based on the vales received from the user, or its more complicated than that?
View 1 Replies
Apr 1, 2007
I'm trying to use System.setClipboard.This copies text to the clipboard.My problem is that it doesn't copy the newline character.I've tried using and but it still doesn't work.
Here is some sample code I'm using:
PHP Code:
myText.text = "Kirupa Website" + newline + "Flash Samples" + newline "Flash Forums"; System.setClipboard(myText.text);
I've also tried having 2 newline characters to seperate the text... but the same results happens.There is no paste function in Flash apparently for security reasons...So to test... you have to use something like Notepad or any other text editor.
View 10 Replies
Feb 7, 2010
I'm making a dialogue based flash game.When a player clicks the right response I want them to gain/lose points.What is the best way to accomplish this?I'm in need of correct code/script because the way I'm doing things now doesn't work.
The buttons that allow for a gain/loss of points are inside of movie clips and are also on different layers, so I thought using a global variable would allow for editing it anywhere,but when I click the buttons that //should// make the player lose or win points, the value does not change, either that or I get a "NaN" in my dynamic text box.
Initiated variable;
_global.love = 0
The code I'm using right now;
on (release) { _root.love += 5;
}
the variable I set the dynamic text box too;
View 1 Replies
Oct 23, 2010
i tried to learn about SharedObjects from here: [URL] ...=00001504.html but i dont really get it In a code like this:
var so:SharedObject = SharedObject.getLocal("userHighScore");
so.data.highScore = new Number();
so.flush();
which variable is actually flushed, the userHighScore or highScore? and how to use the shared objects on boolean variables?
View 1 Replies
May 15, 2009
i'm building a website, with non-system fonts.. Do i have to do something for other computers to see the same font? or thats just the case if i use imput text?
View 1 Replies
May 22, 2009
We have several people that touch Flash files at my company.oes anyone know a good way to make sure we're not opening the same file at the same time?Sort of like how Word will prompt you with a choice of opening as read only or how Dreamweaver lets you check files in and out.Is there anything like that for Flash?
View 1 Replies
May 26, 2009
This information must be on the Adobe site, but I've not had any luck tracking down the information... When creating a Mac and Windows projector in CS4, what are the minimum system requirements to open the created files on a Mac or in Windows?
View 5 Replies
Aug 13, 2010
[URL]... How is this video management system put together? This is not a job for me, I am just curous.
View 3 Replies
Feb 16, 2011
I need to create a function which checks for the existance of a word within an answer... and if the answer contains the'keyword' then it is deemed as correct..For example, if my keyword is 'dalton' I would like to accept any answer which contains 'dalton', for example :the four daltons, Daltons Weekly, the dalton, whatever else dalton might say..
View 2 Replies
Jul 7, 2011
i am making a shooting game for ict and i dont know how to make a scoring system or where to put the code this is my code:
stop();
var numEnemy = 3;
var fire = false;
[code].....
View 7 Replies
Jul 22, 2011
making a Expert system in Flash.[URL]
View 21 Replies
Aug 16, 2011
I'm starting to localize my flash application. I'm trying to see if there is a way to rollback on default operating system fonts for languages like japonese so I don't have to embed them. So far I didn't find anything online. I'm currently using css to define the font family like:
@font-face {
fontFamily: "Tuffy Regular";
src:url("/assets/fonts/Tuffy-Regular.ttf");
embedAsCFF: true;
}
View 1 Replies
Jan 8, 2010
I am trying to call my WCF service through a Flex application. I'm getting the System.ServiceModel.ServiceActivationException. I have Integrated Windows Auth switched to on, anonymous access off, and I've set impersonate to false in my web.config. The project and virtual dir are named the same too.
View 2 Replies