Discuss Scratch
- Discussion Forums
- » Requests
- » RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
RattyTheEd2011's Coding shop
FORMS:
Order form:
Username:
Where to contact you:
Language:
Details:
Read TOS:
(Put project in studio)
Job:
Username:
Language(s):
Example of work(link here):
Where to contact you:
Other notes:
Read TOS:
Review:
Username:
Number of times you have used this shop:
Project we helped with:
What we could do better:
Quote for front page:
Other notes:
Partner:
Shop name:
Shop Banner:
Shop owner:
Proof of shop owner's permission(if you are not them):
Read TOS:
LANGUAGES:
Python
Scratch
TERMS OF SERVICE:
No disrespecting other people
Put your worker in the credits of your project
Codeword: (put in read TOS: ) I love coding
WORKERS:
RattyTheEd2011
MyScratchedAccount
WORKERS RULES:
If You do not follow the TOS you will receive a strike and once you have 3 strikes you will be fired for 3 days
Here is free python program
FORMS:
Order form:
Username:
Where to contact you:
Language:
Details:
Read TOS:
(Put project in studio)
Job:
Username:
Language(s):
Example of work(link here):
Where to contact you:
Other notes:
Read TOS:
Review:
Username:
Number of times you have used this shop:
Project we helped with:
What we could do better:
Quote for front page:
Other notes:
Partner:
Shop name:
Shop Banner:
Shop owner:
Proof of shop owner's permission(if you are not them):
Read TOS:
LANGUAGES:
Python
Scratch
TERMS OF SERVICE:
No disrespecting other people
Put your worker in the credits of your project
Codeword: (put in read TOS: ) I love coding
WORKERS:
RattyTheEd2011
MyScratchedAccount
WORKERS RULES:
If You do not follow the TOS you will receive a strike and once you have 3 strikes you will be fired for 3 days
Here is free python program
#!/bin/python3
# Replace RPG starter project with this code when new instructions are live
def showInstructions():
#print a main menu and the commands
print('''
RPG Game
=============================================================================================================
get to the garden with a key, a potion and a monster to win.(in order to collect a monster you need a sheild)
=============================================================================================================
Commands:
go [direction]
get [item]
''')
def showStatus():
#print the player's current status
print('---------------------------')
print('You are in the ' + currentRoom)
#print the current inventory
print('Inventory : ' + str(inventory))
#print an item if there is one
if "item" in rooms[currentRoom]:
print('You see a ' + rooms[currentRoom]['item'])
print("---------------------------")
#an inventory, which is initially empty
inventory = []
#a dictionary linking a room to other rooms
rooms = {
'Hall' : {
'south' : 'Kitchen',
'north' : 'Living Room',
'east' : 'Dining Room',
'west' : 'stairs',
},
'Kitchen' : {
'north' : 'Hall',
},
'Living Room' : {
'south' : 'Hall',
'item' : 'sheild'
},
'Dining Room' : {
'west' : 'Hall',
'south' : 'Garden'
},
'stairs' : {
'east' : 'Hall',
'west' : 'Landing'
},
'Landing' : {
'north' : 'Bedroom 1',
'west' : 'Bathroom',
'south' : 'Bedroom 2',
'east' : 'stairs'
},
'Bedroom 1' : {
'south' : 'Landing',
'item' : 'key'
},
'Bedroom 2' : {
'north' : 'Landing',
'item' : 'monster'
},
'Bathroom' : {
'east' : 'Landing',
'item' : 'potion'
},
'Garden' : {
'north' : 'Dining Room',
}
}
#start the player in the Hall
currentRoom = 'Hall'
showInstructions()
#loop forever
while True:
showStatus()
#get the player's next 'move'
#.split() breaks it up into an list array
#eg typing 'go east' would give the list:
#['go','east']
move = ''
while move == '':
move = input('>')
move = move.lower().split()
#if they type 'go' first
if move[0] == 'go':
#check that they are allowed wherever they want to go
if move[1] in rooms[currentRoom]:
#set the current room to the new room
currentRoom = rooms[currentRoom][move[1]]
#there is no door (link) to the new room
else:
print('You can\'t go that way!')
#if they type 'get' first
if move[0] == 'get' :
#if the room contains an item, and the item is the one they want to get
if "item" in rooms[currentRoom] and move[1] in rooms[currentRoom]['item']:
#add the item to their inventory
inventory += [move[1]]
#display a helpful message
print(move[1] + ' got!')
#delete the item from the room
del rooms[currentRoom]['item']
#otherwise, if the item isn't there to get
else:
#tell them they can't get it
print('Can\'t get ' + move[1] + '!')
# player loses if they enter a room with a moster in it without a sheild
if 'item' in rooms[currentRoom] and 'monster' in rooms[currentRoom]['item']:
if 'sheild' in inventory:
print('your sheild protected you from a monster... NOW YOU CAN COLLECT IT!')
else:
print('a monster has got you... GAME OVER')
break
if currentRoom == 'Garden' and 'key' in inventory and 'potion' in inventory and 'monster' in inventory:
print('you escaped the house... YOU WIN')
break
Last edited by RattyTheEd2011 (Feb. 12, 2023 07:46:21)
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
-Reserved-
Last edited by RattyTheEd2011 (Jan. 20, 2023 14:27:49)
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Last edited by RattyTheEd2011 (Feb. 11, 2023 17:04:06)
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Bump!
Last edited by RattyTheEd2011 (Aug. 21, 2022 07:55:13)
- StarryDove
- Scratcher
100+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Cool shop!
Last edited by StarryDove (Aug. 5, 2022 12:27:55)
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Bump!
Last edited by RattyTheEd2011 (Aug. 21, 2022 07:56:06)
- Dreadmaster2232
- Scratcher
100+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
- GrilledCheeseBurrito
- Scratcher
1000+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Hi, does your shop accept partners? I don't see a partner form.
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Sorry I have'nt made one yet Hi, does your shop accept partners? I don't see a partner form.
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
DoneSorry I have'nt made one yet Hi, does your shop accept partners? I don't see a partner form.
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Bump!
- MyScratchedAccount
- Scratcher
1000+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Partner:
Shop name: Coding Hut
Shop Banner:
Shop owner: me
Proof of shop owner's permission(if you are not them):
Read TOS: I love coding
Other:
Shop URL = https://scratch-mit-edu.ezproxy.canberra.edu.au/discuss/topic/652178/
Shop name: Coding Hut
Shop Banner:
[img]https://u.cubeupload.com/ifsodfhh/CourierPrime.gif[/img]
Proof of shop owner's permission(if you are not them):
Read TOS: I love coding
Other:
Shop URL = https://scratch-mit-edu.ezproxy.canberra.edu.au/discuss/topic/652178/
- MyScratchedAccount
- Scratcher
1000+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Reported to be closed, last post by owner is Aug, 21 2022.
- Paddle2See
- Scratch Team
1000+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Please note that the first post was edited by the owner much more recently, indicating that the shop is probably still active. Reported to be closed, last post by owner is Aug, 21 2022.
In general, it's best to let the shop owner decide when a shop should be closed unless it's pretty clear that they are no longer active on Scratch.
In the future, please just use the Report button to let the moderator check out the situation without having to post on the topic and alarming the shop owner.
Last edited by Paddle2See (Jan. 20, 2023 12:18:06)
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Accepted Partner:
Shop name: Coding Hut
Shop Banner:Shop owner: me[img]https://u.cubeupload.com/ifsodfhh/CourierPrime.gif[/img]
Proof of shop owner's permission(if you are not them):
Read TOS: I love coding
Other:
Shop URL = https://scratch-mit-edu.ezproxy.canberra.edu.au/discuss/topic/652178/
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Done Partner:
Shop name: Coding Hut
Shop Banner:Shop owner: me[img]https://u.cubeupload.com/ifsodfhh/CourierPrime.gif[/img]
Proof of shop owner's permission(if you are not them):
Read TOS: I love coding
Other:
Shop URL = https://scratch-mit-edu.ezproxy.canberra.edu.au/discuss/topic/652178/
- MyScratchedAccount
- Scratcher
1000+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Username MyScratchedAccount and YourScratchedAccount :
Language(s): Scratch
Example of work(link here):
Raycast: https://scratch-mit-edu.ezproxy.canberra.edu.au/projects/643160808/
Where to contact you: profile and quote
Other notes:
Read TOS: I love coding
Language(s): Scratch
Example of work(link here):
Raycast: https://scratch-mit-edu.ezproxy.canberra.edu.au/projects/643160808/
Where to contact you: profile and quote
Other notes:
Read TOS: I love coding
- MyScratchedAccount
- Scratcher
1000+ posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
the salad shop and been shut down by paddle2see for inactivity
Check the last post for proof! You have the rights to remove them from the list. I am not lying!
Check the last post for proof! You have the rights to remove them from the list. I am not lying!
- RattyTheEd2011
- Scratcher
33 posts
RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.
Hired! Username MyScratchedAccount and YourScratchedAccount :
Language(s): Scratch
Example of work(link here):
Raycast: https://scratch-mit-edu.ezproxy.canberra.edu.au/projects/643160808/
Where to contact you: profile and quote
Other notes:
Read TOS: I love coding
- Discussion Forums
- » Requests
- » RattyTheEd2011's coding shop Now Hiring! Looking for a intermediate level of coding in any programming language.