[HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready)
#35

Thanks, that works now, But...

When samp-server tries to load DUDBdtest filterscript... it closes

This is the log:

Код:
 SA:MP Dedicated Server
 ----------------------
 v0.1, ©2005-2006 SA:MP Team

Executing Server Config...
C:\Program Files\Rockstar Games\GTA San Andreas\samp\scriptfiles\

 Filter Scripts
 ---------------
 Loading filter script 'DUDB.amx'...
 Loading filter script 'DNick.amx'...
 Loading filter script 'register3.amx'...
 Loading filter script 'mytest.amx'...

 _____________________________________________________________________________
 :                                 \ DTEST |
 '                                  `------ґ
  Testing: left() and right() by Y_Less
  (17:58:54, 18. Aug 2006)

   <left>
   [OK] left("Hello World",4) Hell == Hell
   [OK] left("Hello World",4) Hell == Hell
   [OK] tmp Hello World == Hello World
   [OK] left("",5) == 
   [OK] left("Hello",0) == 
   [OK] left("Hello",0) <> Hello
   [OK] left("Hello",-5) == 
   [OK] left("Hello",-5) <> Hello
   [OK] left("Hello",MAX_STRING+2) Hello == Hello
   
   <right>
   [OK] right("Hello World",4) orld == orld
   [OK] right("Hello World",4) orld == orld
   [OK] tmp Hello World == Hello World
   [OK] right("",5) == 
   [OK] right("Hello",0) == 
   [OK] right("Hello",0) <> Hello
   [OK] right("Hello",-5) == 
   [OK] right("Hello",MAX_STRING+2) Hello == Hello
   
                                    
 __                                    .
 |__\________________________________________________________________________:

                                    
 __                                    .
 |__\________________________________________________________________________:

 Loading filter script 'dutilsdtest.amx'...

 _____________________________________________________________________________
 :                                 \ DTEST |
 '                                  `------ґ
  Testing: DUtils
  (17:58:54, 18. Aug 2006)

   <StripNewLine>
   [OK] "Huhu"<>"Huhu"+13+10 Huhu

 <> Huhu
   [OK] StripNewLine("Huhu"+13+10) Huhu == Huhu
   [OK] StripNewLine("Huhu") Huhu == Huhu
   [OK] StripNewLine("Huhu"+10) Huhu == Huhu
   [OK] StripNewLine(13+10) == 
   [OK] StripNewLine(10) == 
   [OK] StripNewLine() == 
   
   <ret_memcpy>
   [OK] ret_memcpy("Huhu",0,2) Hu == Hu
   [OK] ret_memcpy("Huhu",0,4) Huhu == Huhu
   [OK] ret_memcpy("Huhu",0,10) Huhu == Huhu
   [OK] ret_memcpy("Huhu",5,5) == 
   [OK] ret_memcpy("Huhu",1,1) u == u
   [OK] ret_memcpy("Huhu",0,1) H == H
   [OK] ret_memcpy("Huhu",1,2) uh == uh
   [OK] ret_memcpy("Huhu",3,1) u == u
   [OK] ret_memcpy("Huhu",3,3) u == u
   [OK] ret_memcpy("Huhu",4,1) == 
   
   <copy>
   [OK] copy(dest,"Hallo",4) Hall == Hall
   [OK] copy(dest,"Hallo",0) == 
   [OK] copy(dest,"Hallo",120) Hallo == Hallo
   [OK] copy(dest,"Hallo",-1) == 
   
   <del>
   [OK] del(dest,-2) Hello == Hello
   [OK] del(dest,1) ello == ello
   [OK] del(dest,2) lo == lo
   [OK] del(dest,0) lo == lo
   [OK] del(dest,10) == 
   [OK] del(dest,2) == 
   
   <copyEx>
   [OK] copyEx(dest,"Hallo",4,1) allo == allo
   [OK] copyEx(dest,"Hallo",0,1) == 
   [OK] copyEx(dest,"Hallo",120,1) allo == allo
   [OK] copyEx(dest,"Hallo",-1,1) == 
   
   <set>
   [OK] set(dest,"Hallo") Hallo == Hallo
   [OK] set(dest,"H") H == H
   [OK] set(dest,"") == 
   [OK] set(dest,"") H == H
   
   <equal>
   [OK] equal("Hallo","hallo",true) true == true
   [OK] equal("Hallo","Hallo",true) true == true
   [OK] equal("Hall","hallo",true) false == false
   [OK] equal("Hall","hallo",false) false == false
   [OK] equal("","hallo",false) false == false
   [OK] equal("","",true) true
It stops When it tries to load DUDBdtest... can anyone see wutz wrong with DUDB?? :

pawn Код:
#include <a_samp>
// for the samp stuff
#include <dutils>
// for the functions dini and dudb need
#include <dudb>
// for the userdatabase, get dudb version 1.2 for this.
#define dcmd(%1,%2,%3) if ((strcmp(%3, "/%1", true, %2+1) == 0)&&(((%3[%2+1]==0)&&(dcmd_%1(playerid,"")))||((%3[%2+1]==32)&&(dcmd_%1(playerid,%3[%2+2]))))) return 1
#define COLOR_SYSTEM 0xEFEFF7AA



new PLAYERLIST_authed[MAX_PLAYERS];

public SystemMsg(playerid,msg[]) {
  if ((IsPlayerConnected(playerid))&&(strlen(msg)>0)) {
    SendClientMessage(playerid,COLOR_SYSTEM,msg);
  }
  return 1;
}

 public OnPlayerCommandText(playerid,cmdtext[]) {
 dcmd(login,5,cmdtext); // because login has 5 characters
 dcmd(register,8,cmdtext); // because register has 8 characters
 return false;
}

public OnPlayerConnect(playerid) {
 return false;
}

/*
 * This function will be useful when we need the playername
 * © by DracoBlue 2006
 */

public PlayerName(playerid) {
 new name[MAX_PLAYER_NAME];
 GetPlayerName(playerid, name, MAX_PLAYER_NAME);
 return name;
}





/*
 * /register password
 *
 */

 dcmd_register(playerid,params[]) {

  // The command shouldn't work if we already are authed
  if (PLAYERLIST_authed[playerid]) return SystemMsg(playerid,"Already authed.");

  // The command shouldn't work if an account with this
  // nick already exists
  if (udb_Exists(PlayerName(playerid))) return SystemMsg(playerid,"Account already exists, please use '/login password'.");

  // Did he forgot the password?
  if (strlen(params)==0) return SystemMsg(playerid,"Correct usage: '/register password'");

  // We save the money to the accstate
  if (udb_Create(PlayerName(playerid),params,GetPlayerMoney(playerid),"")) return SystemMsg(playerid,"Account successfully created. Login with '/login password' now.");
  return true;

 }




 /*
 * /login password
 *
 */

 dcmd_login(playerid,params[]) {

  // The command shouldn't work if we already are authed
  if (PLAYERLIST_authed[playerid]) return SystemMsg(playerid,"Already authed.");

  // The command shouldn't work if an account with this
  // nick does not exists
  if (!udb_Exists(PlayerName(playerid))) return SystemMsg(playerid,"Account doesn't exist, please use '/register password'.");

  // Did he forgot the password?
  if (strlen(params)==0) return SystemMsg(playerid,"Correct usage: '/login password'");

  if (udb_CheckLogin(PlayerName(playerid),params)) {
    // Login was correct

    // Since we are using the "accstate"-variable to save and
    // read the money of the player, we can update his money now.

    // Following thing is the same like the missing SetPlayerCommand
    GivePlayerMoney(playerid,udb_getAccState(PlayerName(playerid))-GetPlayerMoney(playerid));

    PLAYERLIST_authed[playerid]=true;

    return SystemMsg(playerid,"Successfully authed!");
  } else {
    // Login was incorrect
    return SystemMsg(playerid,"Login failed!");
  }
  return true;
 }




public OnPlayerDisconnect(playerid) {
 if (PLAYERLIST_authed[playerid]) {
   // Was loggedin, so save the data!
   udb_setAccState(PlayerName(playerid),GetPlayerMoney(playerid));
 }
 return false;
}
Reply


Messages In This Thread
[HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by DracoBlue - 31.07.2006, 16:44
Re: [HowTo] Using dudb to save money/stats/whatever - by HoboCop - 31.07.2006, 17:53
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 31.07.2006, 17:57
Re: [HowTo] Using dudb to save money/stats/whatever - by HoboCop - 31.07.2006, 18:12
Re: [HowTo] Using dudb to save money/stats/whatever - by GunLord - 31.07.2006, 18:30
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 31.07.2006, 18:35
Re: [HowTo] Using dudb to save money/stats/whatever - by Roka - 31.07.2006, 18:43
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 01.08.2006, 08:30
Re: [HowTo] Using dudb to save money/stats/whatever - by axelpx - 05.08.2006, 18:36
Re: [HowTo] Using dudb to save money/stats/whatever - by axelpx - 06.08.2006, 09:06
Re: [HowTo] Using dudb to save money/stats/whatever - by axelpx - 06.08.2006, 13:38
Re: [HowTo] Using dudb to save money/stats/whatever - by MadMax - 06.08.2006, 17:27
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 06.08.2006, 17:48
Re: [HowTo] Using dudb to save money/stats/whatever - by Seraphis - 06.08.2006, 20:30
Re: [HowTo] Using dudb to save money/stats/whatever - by Seraphis - 06.08.2006, 20:58
Re: [HowTo] Using dudb to save money/stats/whatever - by Seraphis - 07.08.2006, 03:07
Re: [HowTo] Using dudb to save money/stats/whatever - by smrtak - 08.08.2006, 19:33
Re: [HowTo] Using dudb to save money/stats/whatever - by RMD-06 - 09.08.2006, 04:27
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 09.08.2006, 05:38
Re: [HowTo] Using dudb to save money/stats/whatever - by Ren - 13.08.2006, 09:04
Re: [HowTo] Using dudb to save money/stats/whatever - by Neo_plus - 15.08.2006, 16:37
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 15.08.2006, 17:34
Re: [HowTo] Using dudb to save money/stats/whatever - by Ren - 16.08.2006, 06:42
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 16.08.2006, 21:06
Re: [HowTo] Using dudb to save money/stats/whatever - by smrtak - 17.08.2006, 00:21
Re: [HowTo] Using dudb to save money/stats/whatever - by Ren - 17.08.2006, 01:14
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 17.08.2006, 08:33
Re: [HowTo] Using dudb to save money/stats/whatever - by Ren - 17.08.2006, 08:59
Re: [HowTo] Using dudb to save money/stats/whatever - by smrtak - 17.08.2006, 12:17
Re: [HowTo] Using dudb to save money/stats/whatever - by Mevo - 17.08.2006, 15:13
Re: [HowTo] Using dudb to save money/stats/whatever - by itsme - 17.08.2006, 23:32
Re: [HowTo] Using dudb to save money/stats/whatever - by Mevo - 18.08.2006, 13:08
Re: [HowTo] Using dudb to save money/stats/whatever - by itsme - 18.08.2006, 14:40
Re: [HowTo] Using dudb to save money/stats/whatever - by Mevo - 18.08.2006, 15:03
Re: [HowTo] Using dudb to save money/stats/whatever - by itsme - 18.08.2006, 15:57
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 18.08.2006, 20:02
Re: [HowTo] Using dudb to save money/stats/whatever - by itsme - 18.08.2006, 20:50
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 18.08.2006, 21:06
Re: [HowTo] Using dudb to save money/stats/whatever - by Ren - 19.08.2006, 09:03
Re: [HowTo] Using dudb to save money/stats/whatever - by Mevo - 19.08.2006, 10:21
can i ?? - by egunu - 20.08.2006, 01:47
Re: [HowTo] Using dudb to save money/stats/whatever - by Ren - 20.08.2006, 02:26
Re: [HowTo] Using dudb to save money/stats/whatever - by DracoBlue - 20.08.2006, 17:05
where should i input these scripts? - by egunu - 21.08.2006, 02:15
Re: [HowTo] Using dudb to save money/stats/whatever - by bb1000 - 18.09.2006, 00:31
Re: [HowTo] Using dudb to save money/stats/whatever - by bb1000 - 18.09.2006, 02:37
Re: [HowTo] Using dudb to save money/stats/whatever - by bb1000 - 18.09.2006, 03:00
Re: [HowTo] Using dudb to save money/stats/whatever - by bb1000 - 18.09.2006, 04:10
Re: [HowTo] Using dudb to save money/stats/whatever - by bb1000 - 18.09.2006, 04:23
Re: [HowTo] Using dudb to save money/stats/whatever - by bb1000 - 18.09.2006, 04:56
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Sacky - 12.12.2006, 09:04
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Neo_plus - 12.12.2006, 09:33
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Nitroglycerine - 12.12.2006, 10:28
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Neo_plus - 12.12.2006, 10:30
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by [NR]Luke - 12.12.2006, 16:07
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Neo_plus - 13.12.2006, 09:48
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by [NR]Luke - 13.12.2006, 17:53
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Nitroglycerine - 13.12.2006, 19:57
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by [NR]Luke - 13.12.2006, 20:12
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Neo_plus - 14.12.2006, 06:39
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Donny_k - 14.12.2006, 09:28
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Neo_plus - 15.12.2006, 06:40
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by WSAD_RealNapster - 03.01.2007, 15:32
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Webghost - 03.01.2007, 16:39
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by [NR]Luke - 03.01.2007, 18:16
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by WSAD_RealNapster - 04.01.2007, 15:51
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 05.01.2007, 12:29
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by fandos - 19.01.2007, 01:29
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Pixels^ - 19.01.2007, 01:33
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by [xA]Ramjet - 19.01.2007, 01:39
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Claude_Speed - 30.01.2007, 16:41
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Claude_Speed - 30.01.2007, 17:15
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by yom - 30.01.2007, 19:54
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by dracar - 31.01.2007, 03:07
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 31.01.2007, 09:09
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Delit - 02.02.2007, 10:38
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Tommy_Vercetty - 05.02.2007, 13:49
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 05.02.2007, 13:54
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by Tommy_Vercetty - 05.02.2007, 13:55
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 05.02.2007, 13:57
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by El Burro - 16.06.2007, 11:18
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by miokie - 16.06.2007, 12:50
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 16.06.2007, 13:23
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by miokie - 16.06.2007, 13:27
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 16.06.2007, 13:31
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by miokie - 16.06.2007, 14:14
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by n0ah - 16.06.2007, 16:42
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by miokie - 17.06.2007, 11:40
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by DracoBlue - 17.06.2007, 12:04
Re: [HowTo] Using dudb 2.0 to save money/stats/whatever - by miokie - 17.06.2007, 14:03
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by arnutisz - 29.01.2008, 18:09
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by spl1fter - 19.02.2008, 13:34
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by PyroAnger - 09.03.2008, 18:29
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by El0vric - 10.03.2008, 15:08
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by ZequeZ - 21.03.2008, 19:09
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by darktom - 25.03.2008, 11:34
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by DracoBlue - 25.03.2008, 11:37
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by darktom - 25.03.2008, 12:34
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by whooper - 10.04.2008, 10:47
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 10.04.2008, 12:24
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by whooper - 10.04.2008, 14:13
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 10.04.2008, 14:31
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by whooper - 10.04.2008, 14:45
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 10.04.2008, 15:16
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by whooper - 10.04.2008, 17:17
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 10.04.2008, 17:41
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by whooper - 10.04.2008, 17:46
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Francis[French] - 10.04.2008, 19:33
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by whooper - 10.04.2008, 20:36
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 11.04.2008, 09:55
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by JaYmE - 11.04.2008, 19:45
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Francis[French] - 12.04.2008, 01:01
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by JaYmE - 12.04.2008, 01:16
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 12.04.2008, 10:57
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by JaYmE - 13.04.2008, 07:57
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 19.04.2008, 16:01
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Zh3r0 - 30.04.2008, 18:51
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 30.04.2008, 19:40
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Zh3r0 - 01.05.2008, 06:13
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by lea_VA - 04.05.2008, 20:14
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by arnutisz - 17.02.2009, 16:00
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Nero_3D - 17.02.2009, 20:02
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by iBored1x1 - 18.02.2009, 01:59
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by arnutisz - 18.02.2009, 16:22
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by JaYmE - 18.02.2009, 23:33
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by arnutisz - 19.02.2009, 18:40
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Flo_White - 28.02.2009, 21:56
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by JaYmE - 01.03.2009, 02:04
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by DracoBlue - 01.03.2009, 08:41
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Flo_White - 01.03.2009, 11:49
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by BMUK - 10.03.2010, 07:58
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Oxside - 10.03.2010, 08:02
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by BMUK - 10.03.2010, 08:13
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by CJ101 - 10.03.2010, 09:38
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by BMUK - 10.03.2010, 09:48
Re: [HowTo] Using dudb to save money/stats/whatever - by Micko9 - 12.03.2010, 17:39
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by ivanorezac - 29.03.2010, 21:54
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by ruckfules99 - 06.04.2010, 20:02
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by DracoBlue - 06.04.2010, 20:23
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by ruckfules99 - 06.04.2010, 21:32
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Micko9 - 09.04.2010, 07:11
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Grim_ - 09.04.2010, 07:12
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by [WF]Demon - 11.04.2010, 17:48
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by ruckfules99 - 11.04.2010, 17:54
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by M4S7ERMIND - 11.04.2010, 18:06
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by [WF]Demon - 21.04.2010, 21:44
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by DracoBlue - 22.04.2010, 06:44
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by [WF]Demon - 22.04.2010, 07:52
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by DracoBlue - 22.04.2010, 08:02
Re: [HowTo] Using dudb 2.4 to save money/stats/whatever (0.2#Ready) - by Kyle - 28.04.2010, 06:39

Forum Jump:


Users browsing this thread: 1 Guest(s)