-
Content Count
1,023 -
Joined
-
Last visited
-
Days Won
26
Content Type
Profiles
Forums
Blogs
Downloads
Calendar
Gallery
Everything posted by kellessdee
-
RMXP Script - Cloud Altitude (with Alpha Channel Fog)
kellessdee replied to Heretic86's question in Support
Ah, I figured I missed something... I figured you would have noticed that xD FZer0's solution looks like the way to go. -
RMXP Script - Cloud Altitude (with Alpha Channel Fog)
kellessdee replied to Heretic86's question in Support
#-------------------------------------------------------------------------- # * Determine if Scrolling #-------------------------------------------------------------------------- def scrolling? return @scroll_rest > 0 end The default script already comes with a method to determine if the map is scrolling... Did I misunderstand the question? EDIT: $game_map.scrolling? returns true or false, true if the map is currently scrolling false otherwise. i.e. if $game_map.scrolling? # Do something, map is scrolling else # Do something else, map is NOT scrolling end -
The easiest way would be to use a conditional branch, but rather than selecting whether an item is held, select the "script" option, and in the text box type: $game_party.item_number(item_id) >= number item_id being the id no. in the database of the item in question number being the value required just for more info, if you want to check armor or weapon quantities, you would need to use: $game_party.armor_number(armor_id) >= number $game_party.weapon_number(weapon_id) >= number also, `>=` (in case you don't remember) is greater than or equal to. You can substitute various comparisons if you want: == # is equal to != # is not equal to > # is greater than >= # is greater than or equal to < # is less than <= # is less than or equal to Hope this helps EDIT: Just saw Pol's response, if you aren't comfortable with using scripting I would use his suggestion.
-
Cool, I didn't think anyone was using my script! Well, in that case I apologize for any bugs that you encounter, I haven't touched that thing in ages... but anyways, I think I know the issue to *this* problem. The way my Scene_Title "enhancement" works, is kinda intrusive. Which order did you put these scripts in? I *think* it should work better if you put my script above this one. Let me know if that works, as that might not be the only issue in compatibility with these 2 scripts. EDIT: It looks like there might be some conflicts in the 2 different Bitmap class additions as well :/ I'll have to try to take a better look when I am done class
-
LOL MARK *ahem* That sucks, I hate the winter. Luckily for me, I think Canada's actually getting global warming (ABOUT TIME, TROPICAL CANADA????) we've only had about 2-3 snowfalls (in my area anyway) and it's been mostly warm! WOOHOO However, judging by your post, the ice storm is probably over for you... Did it get better and melt? or are you still frozen down there?
- 6 replies
-
- washington
- bob423
- (and 5 more)
-
I thought this was a thread about SOPA and PIPA? I just saw/skimmed through this article recently: http://www.pcworld.com/article/248525/sopa_pipa_stalled_meet_the_open_act.html Obviously (and joey's article was the precursor to this I think), because of the protests SOPA and PIPA caused, these two acts have been stalled, and a new act called the OPEN act is to be reviewed. more info on OPEN: http://keepthewebopen.com/ Now, to be honest, I haven't really had much of a chance to read through all this... But I will be doing so soon, and figured I would post the information here in case anyone was interested in the proposed replacement for SOPA/PIPA.
-
http://www.rmxpunlimited.net/index.php?option=com_content&view=article&id=207&Itemid=215#spamming If you want to discuss about something other than a resident evil clone for RPG Maker XP, why not start a new topic? C'mon guys, I'm usually quite lenient on going off-topic a little bit (it happens to everyone), but this entire page doesn't even mention the original topic. Consider this a verbal (er.. techincally written) warning. Feel free to message me if you have any questions or concerns. ------------ @kange: I'm not the biggest fan of fangames/clones/Resident Evil...so I'll try not to be too biased here (especially since you've stated your reason for doing so). I think, if you are going to make a 2d resident evil, you should follow the similar style of game (ribbons for saving, similar menu system, etc). Being 2d however, you lose a lot of the "fear factor," and I would personally suggest, to make up for that, is focus on making the game a little more action-oriented. I think this would be a cool spin on the series.
-
This looks SO cool...but it doesn't like windows 7(or at least it doesn't like me) I figure it requires some compatibility setting, though that didn't really work (mind you, I haven't really played around with the compatibility modes much) What OS are you running this on and how (out of curiosity/too lazy to mess with settings myself)? For me, it just chugs away like a tugboat on opiates. I tried it with: Windows 7 4 GB ram 2.4 ghz i3 1 GB video ram *goes off to mess with things*
-
What rage said. I know you probably didn't feel it was necessary to make an entire new post for this question, BUT you should have. I'm sure there are many people on this forum who can help, and would be quite willing to help (and in a timely manner). I am going to close this topic. If you need more help either, make a new topic stating your question or take Rage up on their offer. NOTE: With a NoMethodError, you should also get a notice of the method that was called, which triggered the error...you might want to post that information, as it would be incredibly useful for anyone who will help you. More info on Necro-posting: http://www.rmxpunlimited.net/index.php?option=com_content&view=article&id=207&Itemid=215#necroposting
-
I haven't evented in ages... Seems too complicated for me. So, instead, here's a scripting solution that might help you out (I hope this is what you are looking for) Instructions: - Place script above main, but below other scripts (blah blah as usual) - Create a new state in the database called "non-targetable" or something similar (MAKE NOTE OF THE STATE'S ID NUMBER) - Head to the top of the script, and set the NON_TARGETABLE_STATE_ID equal to the number of the state's id in the database - When enemy has state "Non-Targetable" they CANNOT be selected Caveats: - Because of the nature of RMXP's default scripts, the methods for selecting targets had to be completely overridden; THEREFORE, there is a VERY high chance of compatibility issues with any custom script that affects the targeting system/enemy target arrow Demo: This demo contains a rudimentary replication of what you are trying to achieve (to give you an idea) Try out the battle test for the first troop, lemme know if that's what you are looking for (the hellhound has 5 hp, so you can kill it in one hit, and revives after 3 turns) (you could probably make a better battle event setup than me...honestly I'm no eventer) (the state "non-targetable" is setup to NOT modify the enemy's stats, and priority is set to 0, this is so if you want to use this feature on an actor, the text "non-targetable" will not show up in the state listing.) http://dl.dropbox.com/u/30100812/Unselect.exe class Arrow_Base # -------------------------------------------------------------------------- # CONFIGURATION # -------------------------------------------------------------------------- # Set this value equal to the id of the "non-targetable" state # you created in the database # -------------------------------------------------------------------------- NOT_TARGETABLE_STATE_ID = 17 # -------------------------------------------------------------------------- # END CONFIGURATION # -------------------------------------------------------------------------- end class Arrow_Enemy < Arrow_Base def update super # Skip if indicating a nonexistant enemy $game_troop.enemies.size.times do break if self.enemy.exist? && !self.enemy.state?(NOT_TARGETABLE_STATE_ID) @index += 1 @index %= $game_troop.enemies.size end # Cursor right if Input.repeat?(Input::RIGHT) $game_system.se_play($data_system.cursor_se) $game_troop.enemies.size.times do @index += 1 @index %= $game_troop.enemies.size break if self.enemy.exist? && !self.enemy.state?(NOT_TARGETABLE_STATE_ID) end end # Cursor left if Input.repeat?(Input::LEFT) $game_system.se_play($data_system.cursor_se) $game_troop.enemies.size.times do @index += $game_troop.enemies.size - 1 @index %= $game_troop.enemies.size break if self.enemy.exist? && !self.enemy.state?(NOT_TARGETABLE_STATE_ID) end end # Set sprite coordinates if self.enemy != nil self.x = self.enemy.screen_x self.y = self.enemy.screen_y end end end class Game_Troop def random_target_enemy(hp0 = false) # Initialize roulette roulette = [] # Loop @enemies.each do |enemy| # If it fits the conditions if (!hp0 && enemy.exist?) || (hp0 && enemy.hp0?) && !enemy.state?(NOT_TARGETABLE_STATE_ID) # Add an enemy to the roulette roulette.push(enemy) end end # If roulette size is 0 if roulette.size == 0 return nil end # Spin the roulette, choose an enemy return roulette[rand(roulette.size)] end end If you want the ability to make Actors non-targetable in the same sense, add this script as well:
-
Suggestions for a 'jobs' section
kellessdee replied to Marked's topic in Feedback, Bug Report and Forum Help
YES. I think this would be great idea to integrate into the website. As a suggestion, although I am sure you already thought of it, is you should integrate it into user profiles, and allow user's to specify their services offered, whether they only do for paid, free, etc. And it should also be set up so perhaps there can be reviews/ratings so the quality, timeliness and cooperativeness of the service/service provider. This would allow for a much more structured way to offer services, and it may be a better way to bring together project teams :D -
LOL rage, good rules to follow. anyway, I'm with Mark on this one. Well, my assumption is, perhaps the U.S. gov't (which has enough debt/economy problems as is) will realize the worst thing they can do to the economy is attempt to destroy the internet. I'm sure by know they've AT LEAST realized that these acts will do NOTHING to stop piracy. Just because the DNS won't give you the REAL ip, doesn't mean you cannot connect to the REAL ip. And, if they do this, they may as well give up silicon valley...I hope they realize the implications behind this. If this passes, it's only because hollywood is attempting to "pay off" congress. Little does "hollywood" realize, a lot of their advertising revolves around accused "copyright infringing" websites. Currently, A LOT of websites are hosted in the U.S... If these acts pass, these sites will just find offshore hosting and what do they think the likeliness of ANY new website using US-based hosting? Maybe congress just wants to put the U.S. back into the dark ages?
-
Best way to download and convert videos?
kellessdee replied to Joey's topic in Computers, Internet and Tech Talk
@pol yea, that's what I figured... I just thought to be safe, because "blank" sometimes sounds like "no screensaver" but it is actually a screensaver. and cuz joey said he already messed with the power plan :/ -
Best way to download and convert videos?
kellessdee replied to Joey's topic in Computers, Internet and Tech Talk
Are you sure you don't have a screen saver activated? If your screen saver is set to (none) and your screen is still blacking out, then it would have to be your power options: (i think this only pertains to notebooks and the like, but I could be wrong...I only have a notebook with Windows 7) control panel > power options > change plan settings If it's not that, then you should look into it, because those are the only reasons windows will black out your screen (as far as I know...I have not changed any other settings and the only thing that blacks out my screen, is my screen saver.) -
Best way to download and convert videos?
kellessdee replied to Joey's topic in Computers, Internet and Tech Talk
For converting, try one of these: http://lifehacker.com/316478/top-10-free-video-rippers-encoders-and-converters I used to have/use a good one I *THINK* (seriously don't remember D:), maybe one of those will help. As for the screen blackening, just set your screen saver to (none), that should work. -
Good for mojang -- not their biggest fan, but I respect that. I also respect the major companies like google/wikipedia for doing the same. Hopefully, this nonsense will come to an end soon. Even certain members in the government disagree with these acts.
-
Yes, SOPA and PIPA are a conveniently worded means of the US effectively controlling and censoring the internet. The methods they wish to employ WILL NOT and CAN NOT STOP PIRACY. However, the methods they wish to employ can easily destroy any website that IS CLAIMED to be "infringing copyright" (note, that it does not necessarily even have to be PROVEN, a claim will start the process, the website will be blocked and THEN the legal process will begin) Do not give those who do not understand the internet, the power to control it. Here is the MPAA's response: http://www.pcmag.com/article2/0,2817,2399019,00.asp kind of ironic isn't it? I believe their claims alone prove they know nothing of the matter, and should not be in control.
-
iPhones are taking over the world!
kellessdee replied to BiddyAuthor's topic in Computers, Internet and Tech Talk
I hate apple.....BUT THAT'S ANOTHER RANT I think the whole "Oh my phone is better than yours" is something people come up with, when trying to justify such an expensive purchase or something about people needing this sense of superiority.... When it comes down to it, the hardware is all essentially the same...the REAL difference is the software, which, in this day and age (especially in the context of mobile phones), is mostly personal preference. Which works best for you, is the best phone...for you. I prefer my phone... Motorola Razr. Yup, back when phones were "stupid," like they SHOULD be, well, in my opinion anyways... (Though, if I were to make a choice about smart phones, I would choose some sort of Android phone, because I'm biased towards linux...and the Android phones ACTUALLY give you access to the file system, like THEY SHOULD. I can't justify paying 600+$ for a mini-computer, if it doesn't allow me to access the file system without hacking it or voiding my warranty.)- 11 replies
-
- iphones
- taking over
-
(and 3 more)
Tagged with:
-
:o DELICIOUS @kare3: Why do you think it sounds stupid? (Just curious)
-
demos made in the demoscene? I dunno what I would refer to it as specifically, but this: http://en.wikipedia.org/wiki/Demoscene I googled the title bar of the last pic, and found this and went from there :3
-
Oh sweet! Maybe we can get tea/coffee/hot beverage and enjoy a nice chat before burning up into oblivion, since you'll be in the area. What says you?
-
Okay I think I figured it out...if it hasn't been mentioned yet; I know what it really is. I won't say it though, only 'cuz I cheated and used google xD
-
YAY back to school! Glad to be back ... except that now I am forced to use Windoze again. I forgot how much I hate this OS.
-
I am so confused. WHATISTHISIS? My guess is particle effects? (or does calvin beat me?)
-
Welcome kare :3 I hope you enjoy your time here! How's the weather on Proxima Centauri? (I couldn't resist)