A question on the limits of VERGE...
Displaying 1-9 of 9 total.
1
Aolo
|
...in theory, would it be possible to make an MMOG with VERGE or are VERGE's commands not powerful enough (I mean, making an MMOG with ONLY verge...no dabbling into other languages)...
Just a curiosity question...
-Ajain
Posted on 2005-02-20 19:22:58
|
Overkill
|
Subtract the MM in front, and yes, but with pain. Ideally, you'd probably want another programming language to handle the server, and have only the client made in VERGE, so to make things run more effectively.
Posted on 2005-02-20 19:32:29
|
Aolo
|
But has it ever been done before?
-Aolo
Posted on 2005-02-20 19:38:36
|
Overkill
|
It's possible, but no one has actually made an online game yet.
Posted on 2005-02-20 20:36:22
|
Kildorf
|
Also, it should be noted that networking capabilities have only been in Verge a relatively short time; they really haven't been there long enough to make a serious multiplayer game.
That aside, Zonker has that pong demo. I wouldn't call it massively multiplayer, though. And VergeChat could be called a 'game'... I guess...
Posted on 2005-02-20 21:08:12
|
Troupe
|
'Look, look! My 'k' is attacking your 'r'! I win! I'll add a '|' to my tally.'
What the cock is up with quotations turning into apostrophes? :(
Posted on 2005-03-01 21:16:23 (last edited on 2005-03-01 21:17:18)
|
Kildorf
|
Quote:Originally posted by Troupe
'Look, look! My 'k' is attacking your 'r'! I win! I'll add a '|' to my tally.'
What the cock is up with quotations turning into apostrophes? :( That sounds like a multiplayer roguelike.
Anyhow, I suspect the whole double quotes turning into apostrophes thing is a side effect of something the scripts are doing to make posts storable in an SQL database. Double- and single-quotes are generally special characters to SQL statements so they have to be escaped in various silly ways. It's probably just not quite unescaping them properly when it pulls them back out.
Posted on 2005-03-02 05:21:31
|
Overkill
|
The text data into the MySQL table needs to be addslashes()'d before queried. The fetched rows from MySQL need to be removeslashes()'d. If you do that, you shouldn't have any problem inputting it into the table and extracting it!
Er... wait you might not need removeslashes(), since PHP probably would interpret the slashes as escape characters when you use echo. Maybe not though...
Posted on 2005-03-02 14:21:52
|
Kildorf
|
That's a good point on the add/remove slashes. ... So I have no idea either. Maybe you can figure it out (eventually), eh, overkill? :D
Posted on 2005-03-02 14:27:56
|