Search found 8 matches

by Himekuri
Fri Nov 15, 2013 5:56 pm
Forum: Ren'Py Questions and Announcements
Topic: How to create a chat board within a game?
Replies: 2
Views: 680

Re: How to create a chat board within a game?

I meant a chat board where you literally chat to other users using the internet. I need this as the game I'm writing is quite unique...
by Himekuri
Mon Oct 28, 2013 9:31 am
Forum: Ren'Py Questions and Announcements
Topic: How to create a chat board within a game?
Replies: 2
Views: 680

How to create a chat board within a game?

I'm creating a game where I want people who use it to be able to chat to each other on a chat board. I thought it would be possible since you can add mini games and all. However I don't know how to or where to start. Can anyone help me please?
Thank you.
by Himekuri
Thu Oct 17, 2013 1:48 pm
Forum: Ren'Py Questions and Announcements
Topic: I have a new problem with an input...
Replies: 11
Views: 1792

Re: Having trouble with using a certain input?

There is a less painful way than typing (name!="something") every time. You can do: if name not in ["emily","himekuri","anna"]: This is especially useful if there are too many allowed name that you cannot practically type out each one one-by-one. If there are...
by Himekuri
Thu Oct 17, 2013 1:22 pm
Forum: Ren'Py Questions and Announcements
Topic: I have a new problem with an input...
Replies: 11
Views: 1792

Re: Having trouble with using a certain input?

There is a less painful way than typing (name!="something") every time. You can do: if name not in ["emily","himekuri","anna"]: This is especially useful if there are too many allowed name that you cannot practically type out each one one-by-one. If there are...
by Himekuri
Wed Oct 16, 2013 4:52 pm
Forum: Ren'Py Questions and Announcements
Topic: I have a new problem with an input...
Replies: 11
Views: 1792

Re: Having trouble with using a certain input?

jesusalva wrote:Oh, sorry, my error.
I've placed "or", but it should be "and". so the right is:

Code: Select all

 if ((name != "emily") and (name != "himekuri") and (name != "anna")):
Oh! Thank you so much !! First day of doing this and I already learnt so much haha :mrgreen:
by Himekuri
Wed Oct 16, 2013 3:36 pm
Forum: Ren'Py Questions and Announcements
Topic: I have a new problem with an input...
Replies: 11
Views: 1792

Re: Having trouble with using a certain input?

Change if name != "emily": to if ((name != "emily") or (name != "himekuri") or (name != "anna")): That should do fine. CAUTION! you've write the name in lower-case? then, if you write in upper-case, it is wrong. You are driven in start. you can place "pl...
by Himekuri
Wed Oct 16, 2013 2:58 pm
Forum: Ren'Py Questions and Announcements
Topic: I have a new problem with an input...
Replies: 11
Views: 1792

Re: Having trouble with using a certain input?

Modified to RenPy 6.15: $ name = renpy.input("May I please take your name?", length=20) or "Noname" # I modified the variable to renpy 6.15 if name != "emily": # if name different from "emily" jump start c "Nice to see you again [name] ." # %(name)s...
by Himekuri
Wed Oct 16, 2013 1:41 pm
Forum: Ren'Py Questions and Announcements
Topic: I have a new problem with an input...
Replies: 11
Views: 1792

I have a new problem with an input...

Hi I'm trying to write a code that responds to the player writing certain words so far I have $ name = renpy.input("How are you today master?", length=20) or "Noname" if ((name != "Good") and (name != "Ok") and (name != "Fine") and (name != "Gre...