Jump to content
New account registrations are disabed. This website is now an archive. Read more here.

Metaclaw

Member
  • Content Count

    142
  • Joined

  • Last visited

  • Days Won

    11

Metaclaw last won the day on March 21 2014

Metaclaw had the most liked content!

About Metaclaw

  • Rank
    Loyal Member

Other

  • Referer
    google lol

Profile Information

  • Gender
    Female

Engines

  • Prefered Engine
    RPG Maker XP
  • Engine Level
    Good
  • Class Title
    Programmer / Scripter
  • Other Skills
    mapping, pixel-art
  • Project(s)
    drawing

Recent Profile Visitors

4,381 profile views
  1. I meant to ask what languages can be used to write the code in DLL files. anyway, I asked around, and heard that you can write DLLs in c# language. though only c# programs can run them, and they require .Net framework to run. which makes me wonder if Ruby is similar, and can only run Ruby DLLs / require Ruby to be installed. that would be bad, as installing Ruby is not a task for your ordinary computer user. I don't want my game to reuire ruby. (RMXP doesn't actually install Ruby, I'm not sure how it runs Ruby code) so... my game still needs a script to get data from a server. my options are either to use c# .exe file, and ask players to install the .Net framework (most people have it installed so it's not big deal) or write a DLL in C (so there's no need to install extra stuff) I haven't touched C in years, but I remember it being very low level. connecting to a server in such a language is too much trouble. but it sounds useful for adding simple functions to RMXP. there are probably C code snippets available online for comon tasks.
  2. so, I saw people use DLL files with RMXP, to add functions like online features. I want to learn how to make / use DLLs. can someone give the basics? like : how do I create a DLL? can RMXP run any DLL, or are there limits? what language is the code inside a DLL? what is Win32Api, and how is it related to using DLLS?
  3. I want to erase older versions of my script, in the resources/scripts section. the 'garbage can' icon does nothing. what do?
  4. I think you have to edit draw_item and update_cursor_rect. You have to change where the menu commands are (x,y). Your y will always be the same, and x will be index* something. Look how Window_ShopCommand does this.
  5. I've seen people do amazing things & systems with eventing. so I'll take your word for it, though I don't see how it's possible. this is exactly why I made this script- to help create complex event systems. check out my script, and see what I mean.
  6. wel.. imagine you're making a zombie apocalypse game. and you want a new zombie event to be created every 30 seconds.
  7. thnak you all, it's good to be back ^^ I just uploaded my script, I said this week, didn't I? the script description is kinda rushed, I'll add FAQ/ more info later. Ryan, I'm not sure what you mean?
  8. I feel so loved ;-; zahraa, you're the reason I had skype. I'll have to re install it XD
  9. dunno if anyone remembers me.. so I took a break from developing my game, but now I'm back. armed with new programming knowledge of for making online applications. will probably post & ask to help / advices soon. I think I promised to post a script, too. my Event Methods script lets you create event-specific variables, spawn new events during game-play, and more. it has a projectile shooting script too, but it has bugs. I'll post it later this week.
  10. so you're using version 1.04 now, on windows 8? last I tried 1.04 wouldn't even open for me, but I'll try again
  11. this little script will make it impossible to use items on your character. replace the 5 below with your charcater's number in the database. class Game_Actor def item_effect(item) if self.id == 5 $game_system.se_play($data_system.buzzer_se) return false end return super(item) end end
  12. no, cause other people got the same problem in windows 7, and the original poster said he tried running rmxp as admin. I tried cleaning the registery, installing stuff like Flash and javascript, and even formatting my D drive which wasn't formatted yet, in case it's somehow related. that didn't help, so I made a new project & tested everything I could think of. I haven't found any other bugs, thankfully. so.. it's time to go back to work on my game. I'll just keep backups of it. btw, my game did glitch once and couldn't be opened. I know I fixed it, but I don't remember how. I think I copied the scripts file, map files, and the graphics folder into a new project.
  13. my drivers are up to date. I tried version 1.04 and it doesn't work at all. as soon as I opened RMXP it crashed. the next one, version 1.05 is the new one with the red background. I just re-installed it, and the problem isn't fixed. it's weird, I had RMXP installed on windows 8 on a different PC, and it worked just fine. the red background isn't so bad, but since RMXP doesn't work properly, I'm afraid to open my game project.. won't it get glitched? I couldn't find any info on this bug, except that one forum post that said it can't be fixed. I hope there aren't more related bugs waiting to be discovered x.x
  14. re-install & reboot. works 99% of time :p I heard it can't be fixed in other forums, where other people had this problem and asked for help. it seems like windows can't correctly read the custom 'transparent' background color, and I'm pretty sure the old version didn't have a custom bg color feature. so it should work normally. thanks pol, I'll try the old version first, then try to re-install the new. worst case, I'll have to get used to the red color..
×
×
  • Create New...