View Poll Results: You wanna help us?
- Voters
- 2. You may not vote on this poll
-
Yes
-
No
-
Maybe
-
Nope, sorry!
-
Aug 23rd, 2001, 11:28 AM
#1
Thread Starter
Addicted Member
saving
My friend and i are making a game, and we have it all done except for the saving part. It is single player, and we need a programmer, ANYONE, who knows how to save. If you do then please post here. Thanks,
Fellow Programmers
-
Aug 23rd, 2001, 11:30 AM
#2
Member
Please post in Project Requests. There is nothing we can do unless we can see the source code for the entire game.
-
Aug 23rd, 2001, 11:32 AM
#3
Thread Starter
Addicted Member
uh, first we need to know if anyone is willing to help us maybe
but um, if u ask for it i can send u the source code or the game or i can attack it here
-
Aug 23rd, 2001, 11:32 AM
#4
And dont post pointless polls.
If you ha e a problem ask, there is no reason to post a poll saying Can You help Me?
-
Aug 23rd, 2001, 11:34 AM
#5
Retired VBF Adm1nistrator
Saving is just normal File I/O, and then figuring out what to do with the information.
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Aug 23rd, 2001, 11:34 AM
#6
Member
Originally posted by jeb2022
uh, first we need to know if anyone is willing to help us maybe
Uh, that's what Project Requests is for...
Looking for some developers for your next project? Looking for beta testers? This is the place to post. Please - no spamming though.
http://www.vbforums.com/forumdisplay.php?s=&forumid=13
-
Aug 23rd, 2001, 11:35 AM
#7
Thread Starter
Addicted Member
fine ill go post over there
-
Aug 23rd, 2001, 11:36 AM
#8
Retired VBF Adm1nistrator
Jesus filburt, give him a break
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Aug 23rd, 2001, 11:37 AM
#9
Member
Originally posted by plenderj
Jesus filburt, give him a break
Methinks I should be a moderator.
-
Aug 23rd, 2001, 11:43 AM
#10
Thread Starter
Addicted Member
im just looking for someone who is willing to help
-
Aug 23rd, 2001, 11:47 AM
#11
Retired VBF Adm1nistrator
Just post exactly what you want done in here.
Eg.
"
If I'm using the following UDTs to store user information, how could I store/load the information to/from the drive ?
"
And here's some code for you :
VB Code:
Option Explicit
Private Type playerType
name As String
someVar As Long
End Type
Private Sub Form_Load()
Dim myPlayer As playerType, otherPlayer As playerType
With myPlayer
.name = "Jamie"
.someVar = 128
End With
'write to drive
Open "c:\something.txt" For Random As #1
Put #1, , myPlayer
Close #1
'read from drive
Open "c:\something.txt" For Random As #1
Get #1, , otherPlayer
Close #1
With otherPlayer
MsgBox "Name : " & .name & vbCrLf & "someVar : " & .someVar
End With
End Sub
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Aug 23rd, 2001, 11:52 AM
#12
Thread Starter
Addicted Member
here goes *remember im not that good*
okies,
we are making a game, and it's like a single player RPG. so we have an internal clock, etc. every time you level up by getting expirience, you get to add points to your stats, such as hp and strength...so i would like to be able to save on something like an encrypted notepad file:
how much strength, hp, and defense you have.
how much gold (bank and your on hand) you have
and i would like to save the time.
any help appreciated, and there may be more things as i think of them thx again
-
Aug 23rd, 2001, 11:57 AM
#13
Retired VBF Adm1nistrator
All you have to do is modify the "Private Type playerType" part and add/remove your bits and pieces.
In relation to the encryption, there's hundreds of examples of simple encryption on the net.
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|