Group: Member
Posts: 10
Type: None
RM Skill: Undisclosed
QUOTE (pim321 @ Jul 12 2009, 06:53 PM)
That's odd. It's working fine here.
Try again perhaps...? If that doesn't work, what does the error say?
Greatzz, SojaBird.
here is the error report copied from winrar when i run it without saving
CODE
! C:\Documents and Settings\Terry\Local Settings\Temporary Internet Files\Content.IE5\823ZGHUS\Shop_Sell%20Interest_and_Discount_Demo[1].rar: CRC failed in Shop Sell Interest-Shop Discount.exe. The file is corrupt ! C:\Documents and Settings\Terry\Local Settings\Temporary Internet Files\Content.IE5\823ZGHUS\Shop_Sell%20Interest_and_Discount_Demo[1].rar: Unexpected end of archive ! Cannot execute "C:\DOCUME~1\Terry\LOCALS~1\Temp\Rar$EX01.468\Shop Sell Interest-Shop Discount.exe"
and here is when i did save and run
CODE
! C:\Documents and Settings\Terry\My Documents\Shop_Sell Interest_and_Discount_Demo.rar: CRC failed in Shop Sell Interest-Shop Discount.exe. The file is corrupt ! C:\Documents and Settings\Terry\My Documents\Shop_Sell Interest_and_Discount_Demo.rar: Unexpected end of archive ! Cannot execute "C:\DOCUME~1\Terry\LOCALS~1\Temp\Rar$EX00.281\Shop Sell Interest-Shop Discount.exe"
Well what you have to do, is run the file, than extraxt all the files inside it to your harddrive somewhere. Then you should be able to do it. If not, PM me, than I'll sent you the file my self.
For the past couple of months I've been learning RGSS and I've got the basic stuff down such windows, variables, conditional statements, ect. But, I can't see myself making big scripts such as a jumping system or a side view battle system. I was wondering how you learned to script because I really want to know how to script really well.
Thanks in advance.
Hey there,
Well I don't make battle neither though I can still teach you some things :)... The way I've learned to script is by reading other scripts for the most part. I've allways been interested in other peoples work but this time I though I had to try to make something myself...and it worked!! The most importand thing when you go scripting is (at least in my case) that you want to make something to help an other wich can't script. You also need to feel the competition that's around in the scripting-community. Cause, I have to say, if you get pushed to get a sertain request done before an other scripter does, you feel POWERFULL!! :P So that's an other thing... You also don't need to be afraid to learn from others or helpfiles. When I write my scripts, I actualy always have the helpfiles open to look things up I don't know or remember. Then, you must be calm, cause you need to try the script a lot of times. When I write a script, I test it after almost every changes. First I set up the major structure. Like when I make a window-script or part of a script I start with something like this:
CODE
class Window_Name < Window_Base def initialize(x,y,width,height) super(x,y,width,height) refresh end
def refresh self.contents.clear draw_contents end
def draw_contents draw_something(with, some, parameters) end
def update refresh if @something != @what_it_should_be end end
So that's also very important. Then, the biggest thing I learned scripting from is TRIAL AND ERROR. That's the most irritating way to learn something, cause it's more ERROR than TRIAL, but it does the trick realy good.
So that's it how I did it. Now it's up to you. Do some requests (if I didn't do it allready :P) and learn from them.
Hope that helped you out a little. If not, keep your eye on the Scriptology-topic (see my sig) where I'll be updating for my scripting(video)tutorials. Perhaps they're going to be usefull for you one day ;)
Group: Member
Posts: 99
Type: Developer
RM Skill: Intermediate
The only problem I see is that items sell for full price, instead of half. Edit 1:What part of the script would I change that at? Edit 2:NVM I used my noob skills and found it.
This post has been edited by Jacklo: Aug 23 2009, 10:14 AM
__________________________
Your future depends on your dreams - So go to sleep! If you can't laugh at yourself, I'll do it for you. "A lot... Thats my favorite number..." Self-Proclaimed King of Eventing Need an idea for an RPG???!
For the past couple of months I've been learning RGSS and I've got the basic stuff down such windows, variables, conditional statements, ect. But, I can't see myself making big scripts such as a jumping system or a side view battle system. I was wondering how you learned to script because I really want to know how to script really well.
Thanks in advance.
Hey there,
Well I don't make battle neither though I can still teach you some things :)... The way I've learned to script is by reading other scripts for the most part. I've allways been interested in other peoples work but this time I though I had to try to make something myself...and it worked!! The most importand thing when you go scripting is (at least in my case) that you want to make something to help an other wich can't script. You also need to feel the competition that's around in the scripting-community. Cause, I have to say, if you get pushed to get a sertain request done before an other scripter does, you feel POWERFULL!! :P So that's an other thing... You also don't need to be afraid to learn from others or helpfiles. When I write my scripts, I actualy always have the helpfiles open to look things up I don't know or remember. Then, you must be calm, cause you need to try the script a lot of times. When I write a script, I test it after almost every changes. First I set up the major structure. Like when I make a window-script or part of a script I start with something like this:
CODE
class Window_Name < Window_Base def initialize(x,y,width,height) super(x,y,width,height) refresh end
def refresh self.contents.clear draw_contents end
def draw_contents draw_something(with, some, parameters) end
def update refresh if @something != @what_it_should_be end end
So that's also very important. Then, the biggest thing I learned scripting from is TRIAL AND ERROR. That's the most irritating way to learn something, cause it's more ERROR than TRIAL, but it does the trick realy good.
So that's it how I did it. Now it's up to you. Do some requests (if I didn't do it allready :P) and learn from them.
Hope that helped you out a little. If not, keep your eye on the Scriptology-topic (see my sig) where I'll be updating for my scripting(video)tutorials. Perhaps they're going to be usefull for you one day ;)
Pls read the rules of posting in topics first. I see you only have 3 post wich are all located above, posted after eachother with a timespan less then a hour!! This is real bad necro posting.
Also, I don't mind if you get problems with my script. Don't complain about it, just post your errors and I see if I can fix it but in your case I have to say: YOU DON'T HAVE TO USE MY SCRIPTS if you think is "bad". Don't complain or I'll flame. Just don't use scripts if you think it's bad. Why do you actualy take effort posting if you think it stinks? Realy, awnser me that please!
For the past couple of months I've been learning RGSS and I've got the basic stuff down such windows, variables, conditional statements, ect. But, I can't see myself making big scripts such as a jumping system or a side view battle system. I was wondering how you learned to script because I really want to know how to script really well.
Thanks in advance.
Hey there,
Well I don't make battle neither though I can still teach you some things :)... The way I've learned to script is by reading other scripts for the most part. I've allways been interested in other peoples work but this time I though I had to try to make something myself...and it worked!! The most importand thing when you go scripting is (at least in my case) that you want to make something to help an other wich can't script. You also need to feel the competition that's around in the scripting-community. Cause, I have to say, if you get pushed to get a sertain request done before an other scripter does, you feel POWERFULL!! :P So that's an other thing... You also don't need to be afraid to learn from others or helpfiles. When I write my scripts, I actualy always have the helpfiles open to look things up I don't know or remember. Then, you must be calm, cause you need to try the script a lot of times. When I write a script, I test it after almost every changes. First I set up the major structure. Like when I make a window-script or part of a script I start with something like this:
CODE
class Window_Name < Window_Base def initialize(x,y,width,height) super(x,y,width,height) refresh end
def refresh self.contents.clear draw_contents end
def draw_contents draw_something(with, some, parameters) end
def update refresh if @something != @what_it_should_be end end
So that's also very important. Then, the biggest thing I learned scripting from is TRIAL AND ERROR. That's the most irritating way to learn something, cause it's more ERROR than TRIAL, but it does the trick realy good.
So that's it how I did it. Now it's up to you. Do some requests (if I didn't do it allready :P) and learn from them.
Hope that helped you out a little. If not, keep your eye on the Scriptology-topic (see my sig) where I'll be updating for my scripting(video)tutorials. Perhaps they're going to be usefull for you one day ;)