Quote:
|
Originally Posted by napo_p2p
PHP Code:
function onPM(" ", message) {
}
|
hahaha bad idea
and as for the params, use all or none.
also, adding variables there doesn't tell the function what to put where, it just gives names for things. the first variable will always be the first paramater, and the second variable will always be the second.
Quote:
function onKeypressed(key,code)
function onKeypressed(code,key)
function onKeypressed(code)
function onKeypressed(key)
|
if you do things like this, you're bound to get yourself confused.