Page 1 of 2
Official Fixes
Posted: Tue Jun 08, 2010 10:26 pm
by hallsofvallhalla
Okay, I have downloaded the source myself and setup up a local game using exactly what you guys have.
Every "error" I have found is all host based. In other words what your host preferences are. I am going ot go through and make this all universal where it should work on everyones. Gimme about an hour or two and I will upload a fully working fully universal version.
Thanks for help testing this and getting it right.
Re: Official Fixes
Posted: Tue Jun 08, 2010 10:32 pm
by hallsofvallhalla
btw the reason you are getting the could not register skills is because you have not emptied the skill table, empty the players, skills, anti-cheat, backpack, suit,and equip tables
Re: Official Fixes
Posted: Tue Jun 08, 2010 10:36 pm
by hallsofvallhalla
your undefined index in locations is from the get method for column and row, simply make a if isset, i am adding these fixes to the new download but these are simple..
Re: Official Fixes
Posted: Tue Jun 08, 2010 10:49 pm
by Baseball435
Ohhh ok well thanks halls! This will make it easier for everyone!
Re: Official Fixes
Posted: Tue Jun 08, 2010 11:26 pm
by hallsofvallhalla
for those that don't download the new files and import the new database
add trainer smallint 1 to housing
Re: Official Fixes
Posted: Tue Jun 08, 2010 11:54 pm
by Baseball435
hallsofvallhalla wrote:for those that don't download the new files and import the new database
add trainer smallint 1 to housing
ok well i'm going to download again
Re: Official Fixes
Posted: Wed Jun 09, 2010 1:22 am
by hallsofvallhalla
okay source has been officially fixed. Nearly every error is fixed. I myself downloaded it and the DB and everything should now be okay. Was for me but I didn't check 100%. If you do find an error should be very easy to fix.
Remember you need to most likely alter the connect.php in all the folders, that is one thing I did not change, should have made it all to on efile but didn't have time.
Enjoy.
Re: Official Fixes
Posted: Wed Jun 09, 2010 2:00 am
by Baseball435
hallsofvallhalla wrote:okay source has been officially fixed. Nearly every error is fixed. I myself downloaded it and the DB and everything should now be okay. Was for me but I didn't check 100%. If you do find an error should be very easy to fix.
Remember you need to most likely alter the connect.php in all the folders, that is one thing I did not change, should have made it all to on efile but didn't have time.
Enjoy.
thanks halls!
Re: Official Fixes
Posted: Wed Jun 09, 2010 3:18 pm
by ier
I have a problem on line 114 it sometimes comes and sometimes not
Notice: Undefined variable: pllevel in C:\wamp\www\Forsaken\locations\map.php on line 114
this is line 113 - line 115
Code: Select all
$crlevel = $mapinfo3['creature'] / 5;
$crinfo="SELECT * from creatures where level<='$pllevel' AND type='any' order by rand() limit 1";
$crinfo2=mysql_query($crinfo) or die("Could not map");
Re: Official Fixes
Posted: Wed Jun 09, 2010 4:34 pm
by hallsofvallhalla
well pllevel is is player level so it may only be getting defined under a certain situation.
Add just below your player query
$pllevel = $playerinfo3['level'];