-
Proficient Member
Custom maps problem
I have followed the tuts to add custom maps but i keep getting disconnected and it doesnt save my position.
This is the error
WO_API: failed with error code 5 SQL Select Failed: Procedure or function WZ_Char_SRV_SetStatus has too many arguments specified.
Edit: Also yes i realised now that i posted in wrong section, my bad haven't slept in a while.
Please help.
-
-
Re: Custom maps problem
Just did this, ill post a tutorial later on today on to do this.
-
Banned
Re: Custom maps problem
I would like to know this as well. Thank you Dragon for helpig us out. <3
-
Account Upgraded | Title Enabled!
Re: Custom maps problem
Check api_SrvCharUpdate.aspx.cs
sqcmd.Parameters.AddWithValue("@in_CustomerID", CustomerID);
sqcmd.Parameters.AddWithValue("@in_MapID", web.Param("map"));
sqcmd.Parameters.AddWithValue("@in_CharID", CharID);
sqcmd.Parameters.AddWithValue("@in_Alive", web.Param("s1"));
sqcmd.Parameters.AddWithValue("@in_GamePos", web.Param("s2"));
sqcmd.Parameters.AddWithValue("@in_GamePos2", web.Param("s2"));
sqcmd.Parameters.AddWithValue("@in_Health", web.Param("s3"));
Check store procedure WZ_Char_SRV_SetStatus
@in_CustomerID int,
@in_MapID int,
@in_CharID int,
@in_Alive int,
@in_GamePos varchar(256),
@in_GamePos2 varchar(256),
@in_GameFlags int,