Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

2 Pages V  < 1 2  
Reply to this topicStart new topic
> Shop Selling Interest/Shop Discount, Make shops to buy only stuff they want or need! And add discounts
fruroar
post Jul 14 2009, 05:13 AM
Post #21


Level 1
Group Icon

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"
eh?


__________________________

Go to the top of the page
 
+Quote Post
   
SojaBird
post Jul 14 2009, 06:46 AM
Post #22


Level 51
Group Icon

Group: Revolutionary
Posts: 1,573
Type: Scripter
RM Skill: Advanced




Strages...

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.


Greatzz,
SojaBird.


__________________________
Art from the highest shelf?

Scriptology, scripting podcast



HUD's Request Lobby (multiple hud-scripts)


------------------------------------------------------------------

Random Stuff
OMG, it's Hab!!


This is a crazy drawing application! (by me)

How did I learned to script
QUOTE
Hey pim! I'm the Law G14!

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 ;)


Greatzz,
SojaBird.
Go to the top of the page
 
+Quote Post
   
Jacklo
post Aug 23 2009, 10:01 AM
Post #23


Level 7
Group Icon

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???!

CLICK THE SHINIGAMI!


Click here to level up my card!
Go to the top of the page
 
+Quote Post
   
SojaBird
post Aug 23 2009, 12:40 PM
Post #24


Level 51
Group Icon

Group: Revolutionary
Posts: 1,573
Type: Scripter
RM Skill: Advanced




So the problem is solved?
Or do you still have problems?

Greatzz,
SojaBird.


__________________________
Art from the highest shelf?

Scriptology, scripting podcast



HUD's Request Lobby (multiple hud-scripts)


------------------------------------------------------------------

Random Stuff
OMG, it's Hab!!


This is a crazy drawing application! (by me)

How did I learned to script
QUOTE
Hey pim! I'm the Law G14!

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 ;)


Greatzz,
SojaBird.
Go to the top of the page
 
+Quote Post
   
doogle423
post Aug 31 2009, 07:25 AM
Post #25


Level 2
Group Icon

Group: Member
Posts: 18
Type: None
RM Skill: Undisclosed




This isn't working I've looked at the demo and I've done everything demo say and it still isnt working...

<Weapons>

Problem if i have other thing on it like <LearnSkill 2> It wont work..

Ur script is bad..



please do not flame others, and do not triple post, use the edit button. warn level raised.
~night5h4d3
Go to the top of the page
 
+Quote Post
   
SojaBird
post Aug 31 2009, 08:59 AM
Post #26


Level 51
Group Icon

Group: Revolutionary
Posts: 1,573
Type: Scripter
RM Skill: Advanced




Doogle,

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!


Greatzz and don't enjoy my scripts(!),
SojaBird.


__________________________
Art from the highest shelf?

Scriptology, scripting podcast



HUD's Request Lobby (multiple hud-scripts)


------------------------------------------------------------------

Random Stuff
OMG, it's Hab!!


This is a crazy drawing application! (by me)

How did I learned to script
QUOTE
Hey pim! I'm the Law G14!

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 ;)


Greatzz,
SojaBird.
Go to the top of the page
 
+Quote Post
   

2 Pages V  < 1 2
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 19th June 2013 - 06:10 PM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker