[help]Monster spawn PHP script

Elite Diviner
Joined
Oct 5, 2008
Messages
464
Reaction score
1
Hi all!!!

i started making a PHP script to create monster spawns into the database...but since im not a PHP coder i copied it from the register script and adapted it...but i still need some help to make it perfect...if anyone wanna take part of my little project just PM me or contact me on msn [email protected]



ty!!!

here is a sample of what it looks like(most functions are scripted but still not perfect)
monspawn - [help]Monster spawn PHP script - RaGEZONE Forums

also i want to try making adapted version for all DBs(rhisis,caali,and others)
 
Do you know any programming language? (C++, C, C#, pascal, anything)
If you dont know any, my suggestion is not to try to learn by copy/paste code. If you have any base, then its ok to read, understand and copy/paste.
Anyways, good lucky on your project, I would help if I were not so busy, but you can pm me some questions. If you feel its not a question that some google search or learning would solve, coders paradise section of ragezone is also a good place to ask.
 
Do you know any programming language? (C++, C, C#, pascal, anything)
If you dont know any, my suggestion is not to try to learn by copy/paste code. If you have any base, then its ok to read, understand and copy/paste.
Anyways, good lucky on your project, I would help if I were not so busy, but you can pm me some questions. If you feel its not a question that some google search or learning would solve, coders paradise section of ragezone is also a good place to ask.

if you have the time to just take a look at my script it would be nice...if you have msn you can add me

[email protected]
 
The script you are making, you can find here
http://forum.ragezone.com/f457/caali-web-proktuscms-1st-and-final-release-561462/

I put you here one example (my own code):
PHP:
$charid = $_GET["charid"];
$query = mysql_query("SELECT * FROM accounts WHERE username = '$user'")  or die(mysql_error());
$get = mysql_fetch_array($query);
{
mysql_query("UPDATE characters SET accountname = '$accountname' WHERE id = '$charid'") or die(mysql_error());
unset($_POST["accountname"]);
header ("Location: index.php")
}

Note: I made this example, for accounts, not for monster spawn
 
im not asking a script...my script is made...i need someone to back check what ive done because im not sure its perfect...
 
Back