Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.
In the meantime please join the new Discord Server!
If you have any questions please e-mail me through the Platinum Arts website.
In the meantime please join the new Discord Server!
If you have any questions please e-mail me through the Platinum Arts website.
RPG Project *TGC* (The Golden Coin)
-
- Support Team
- Posts: 2734
- Joined: January 13th, 2010, 12:42 pm
- Name: Timothy
- IRC Username: I use Steam
- Location: Looking over your shoulder...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
Oops, sorry. I meant of TGC itself. Your codes you were mentioning earlier. If you could put those up for the people who don't have TGC.
Arc
Arc

Want a user bar like this one? PM Leo!
- damiandj
- Member
- Posts: 159
- Joined: October 10th, 2009, 6:50 am
- Name: Damian
- Location: Selva di Val Gardena , South Tyrol, Italy, Europe, Earth
Re: RPG Project *TGC* (The Golden Coin)
Hehe, I still don't understand what you mean. The TGC libraries are currently very very big. Only the inventory is bigger then 30 sites
if not even more 
Tell me what you exacly need and then I will show off the code


Tell me what you exacly need and then I will show off the code

RPG PROJECT - "The Golden Coin" (TGC) - http://www.thegoldencoin.do.am - DAMIAN
-
- Support Team
- Posts: 2734
- Joined: January 13th, 2010, 12:42 pm
- Name: Timothy
- IRC Username: I use Steam
- Location: Looking over your shoulder...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
Leo was wondering if you had any spells you used and if it would be possible to give us permission to use them.Leo_V117 wrote:Yeah, that'll be helpful, level connection codes would be cool too, and if you have custom spells, that would be great. I sort of need them form my RPG, dont worry, you will be credited.
@Leo there are support topics on connecting maps to one another

I was wondering whether you could show any code you have for triggering objects to talk, give quests, buy stuff and otherwise interact with the main character (like you said earlier, "weight systems").
I think it would help a lot of people with understanding cube scripting if you did this.
Thanks,
Arc

Want a user bar like this one? PM Leo!
- Leo_V117
- Support Team
- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
I forgot to mention those scripts arc, that would also help us with our FPS Project too.
- Leo
- Leo
Game Projects
Sandbox Tools
- damiandj
- Member
- Posts: 159
- Joined: October 10th, 2009, 6:50 am
- Name: Damian
- Location: Selva di Val Gardena , South Tyrol, Italy, Europe, Earth
Re: RPG Project *TGC* (The Golden Coin)
An example created here in 3 minutes:
Code: Select all
apple = [0] //variable apple with weight 2
weight = [0] // weight system
"level_trigger_X1" = [showgui applequest] //trigger se to X1 show the gui applequest
"level_trigger_X2" = [showgui inventory] //trigger se to X2 show the gui inventory
apple_1 = [apple = (+ $apple 1); echo "You got an apple"; weight = (+ $weight 2)] //function that adds an apple
apple_0 = [apple = (- $apple 1); echo "You lost an apple"; weight = (- $weight 2)] //viceversa
newgui applequest [
guitext "Hey, here is an apple for you!!!" chat
guibar
guibutton "Oh thanks!!!" [apple_1] cleargui
] "QUEST APPLE"
newgui inventory [
guitext (format "apples = %1" $apple)
guitext (format "weight = %1" $weight)
guibar
guibutton "Exit" cleargui
] "INVENTORY"
RPG PROJECT - "The Golden Coin" (TGC) - http://www.thegoldencoin.do.am - DAMIAN
- Leo_V117
- Support Team
- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
You had custom spells for it right? Can we please have a few, just to give is an idea?
Game Projects
Sandbox Tools
-
- Support Team
- Posts: 2734
- Joined: January 13th, 2010, 12:42 pm
- Name: Timothy
- IRC Username: I use Steam
- Location: Looking over your shoulder...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
wow damian! thanks!
I didn't realize that you needed guibar before guibutton!
Thanks!
Arc
I didn't realize that you needed guibar before guibutton!
Thanks!

Arc

Want a user bar like this one? PM Leo!
- damiandj
- Member
- Posts: 159
- Joined: October 10th, 2009, 6:50 am
- Name: Damian
- Location: Selva di Val Gardena , South Tyrol, Italy, Europe, Earth
Re: RPG Project *TGC* (The Golden Coin)
I didn't made custom spells yet. But I think that's easy to create one(thanks to the PAS TEAM). Maybe I will try this weekend to create one...
@Arcones
guibar is not really needed. It sets only a bar between guitext and guibutton...
@Arcones
guibar is not really needed. It sets only a bar between guitext and guibutton...
RPG PROJECT - "The Golden Coin" (TGC) - http://www.thegoldencoin.do.am - DAMIAN
-
- Support Team
- Posts: 2734
- Joined: January 13th, 2010, 12:42 pm
- Name: Timothy
- IRC Username: I use Steam
- Location: Looking over your shoulder...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
ahh... thanks anyway!
Arc

Arc

Want a user bar like this one? PM Leo!
- Leo_V117
- Support Team
- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: RPG Project *TGC* (The Golden Coin)
okay, what about multiple choice functions? for example:
GUI: Have a look for the cake:
Response: Sure thing. I know its here somewhere
Response: No way, Everyone knows the cake is a lie.
GUI: Have a look for the cake:
Response: Sure thing. I know its here somewhere
Response: No way, Everyone knows the cake is a lie.
Game Projects
Sandbox Tools