Quote:
Originally Posted by Jopsi332
Da das ganze in der Exordium Source releast worden ist release ich es mal hier offiziel.
Ich werde dafür kein Support leisten und das mit der Datenbank könnt ihr selbst machen wers net gebacken kriegt hat pech.
Ist eh eine alte Version die lange nicht alle features meines aktuellen glow systems hat an einigen stellen echt dreckigen code hat.
pw ist onlyepvp
|
I use this and i success execute all of this:
Open your database and right click CHARACTER_TBL then click on design.
At the bottom you need to insert.
GlowArmRight (INT)
GlowArmLeft (INT)
GlowLegRight (INT)
GlowLegLeft (INT)
GlowBody (INT)
GlowHandLeft (INT)
GlowHandRight (INT)
After you have done that save it.
Then we go to stored procedures
And we find CHARACTER_STR right click on it Modify.
Then Search for
, @im_idCampus int = 0
And below we add this
Spoiler:
---------- Glow System
, @iGlowArmleft int = 0
, @iGlowArmRight int = 0
, @iGlowLegLeft int = 0
, @iGlowLegRight int = 0
, @iGlowBody int = 0
, @iGlowHandLeft int = 0
, @iGlowHandRight int = 0
Then search for
IF @iGu = 'S8' -- ??? ?? ????
In the Select procedure find
, isnull(R.m_LogOutTime, 0) m_LogOutTime
And after that we add
Spoiler:
, A.GlowArmLeft
, A.GlowArmRight
, A.GlowLegLeft
, A.GlowLegRight
, A.GlowBody
, A.GlowHandLeft
, A.GlowHandRight
Then search for
IF @iGu = 'U1' -- ??? ??
In the UPDATE procedure search for
, idCampus = @im_idCampus
And below that add
Spoiler:
, GlowArmLeft = @iGlowArmleft
, GlowArmRight = @iGlowArmRight
, GlowLegLeft = @iGlowLegLeft
, GlowLegRight = @iGlowLegRight
, GlowBody = @iGlowBody
, GlowHandLeft = @iGlowHandLeft
, GlowHandRight = @iGlowHandRight
Then find
IF @iGu = 'I1' -- ?? ?? ??
And in the INSERT PROCEDURE find
INSERT CHARACTER_TBL
In the INSERT STATEMENT below , idCampus add
Spoiler:
, GlowArmLeft
, GlowArmRight
, GlowLegLeft
, GlowLegRight
, GlowBody
, GlowHandLeft
, GlowHandRight
Then after the second ,0
add
7x an , 0
After you done that all click on execute and youre done.
With kind regards,
Loky
But this is happen ingame and the glow can't save,when i reconnect to the game the glow is rollback 
ScreenShot: 
how to fix this