Also I think the login procedure may need to be fixed it's hard to explain the bug test it out yourself
Printable View
I'm lost. I keep getting the same error and I have everything set up properly.
Did it. "Program testP07;
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
//LOGIN INFO STUFF
Procedure P07_DeclarePlayer;
Begin
P07_PlayerName:='username';
P07_PlayerPass:='password';
End;
Begin
P07_DeclarePlayer;
SetupP07Include;
ActivateClient;
End."
Everything is setup but I can't get it working.
what the hell lol, do you have team viewer so you can show me?
did you install simba right? http://www.youtube.com/watch?v=mho1ek92jgY
Dropping works fine for me, thanks :)
It has accidently logged me out twice now, hmm.
2mins double checking math
@Emperia, run this for me with a full inv plz, show me the image that opens in simba,
Simba Code:Program DropDebugger;
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
{$I SRL/SRL/Misc/Debug.Simba}
Procedure P07_DebugBoxes(DSlotX,DSlotY:Integer);
Var
xsx,ysy,R,C:Integer;
FoundItem:T2DPointArray;
Begin
SetLength(FoundItem,1);
xsx:=565;
ysy:=215;
For R:=0 To 3 Do
Begin
For C:=0 To 6 Do
Begin
if (R=DSlotX) and (C=DSlotY) Then
Begin
FoundItem[0]:=[Point((xsx+(R*42)),(ysy+(C*36))),Point((xsx+(R*42)+27),(ysy+(C*36)+25))];
DebugATPA(FoundItem,'testbox');
End;
End;
End;
End;
Begin
SetupP07Include;
ActivateClient;
P07_DebugBoxes(1,6);
End.
Procedure P07_DeclarePlayer;
Begin
P07_PlayerName:='username';
P07_PlayerPass:='password';
End;
Why not just use the TUser record in the srl include?
Other than that GoodJob :), Don't know why you didn't keep it SRL+ but that's your choice at the end of the day.
Btw, a lot of people are getting this error:
http://i.imgur.com/T7C1518.png
What is it?