08-07-2008, 04:57 AM
Explain to me what you mean by resynching?
If you mean simply reloading the surfaces you can do it like so:
in modCommands:
If you mean simply reloading the surfaces you can do it like so:
in modCommands:
Code:
If Mid(MyText, 1, 8) = "/refresh" Then
If MsgBox("You are about to refresh all the graphics surfaces. This could take some time, and may also 'mess the graphics up'. If anything looks distroted after reshing, you may try to do it again, but it is better to restart the game client." & vbNewLine & "Do you wish to refresh?", vbYesNo, "Warning") = vbYes Then
Call DestroyDirectX
Call InitDirectX
Call AddText("Surfaces recallibrated.", white)
End If
MyText = ""
Exit Sub
End If