Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

/WISH


Lenton
 Share

Recommended Posts

The function /wish lets other players send feedback to you about your game.

I'm not too sure how to receive this feedback. I'm using TE and I'm not sure where the info-mation gets sent.

```
If LCase(Mid(TextSay, 1, 5)) = "/wish" Then
        If Len(TextSay) > 6 Then
            TextSay = Mid(TextSay, 6, Len(TextSay) - 5)         
            Do While C = 0
                If GetVar("wishes.ini", "WISH", "Wish" & i) <> "" then
                  i = i + 1
                Else
                  Call PutVar("wishes.ini", "WISH", "Wish" & i, Trim(TextSay))
                  Call PlayerMsg(index, "Thanks for your feedback!", 6)
                  C = 1
                End if 
            Loop
        End If
        Exit Sub
    End If
```
That's the code in the main text, from that can you tell me where it's sent?

Thanks.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...