18.09.2017, 18:53
Bom, quero salvar um valor que estб em bool, EM DOF2!
Como faзo?
Como faзo?
DOF2_SetBool(file[], key[], bool:value, tag[]="");
native DOF2_SetFile(file[]);
native DOF2_LoadFile();
native DOF2_SaveFile();
native DOF2_ParseFile(file[],extraid,bool:callback=true);
native DOF2_ReparseFile(file[],extraid,bool:callback=true);
native DOF2_WriteFile();
native DOF2_PrintFile(comment[]="");
native DOF2_GetString(file[],key[],tag[]="");
native DOF2_GetStringEx(file[],key[],result[],size,tag[]="");
native Float:DOF2_GetFloat(file[],key[]);
native DOF2_GetInt(file[],key[],tag[]="");
native DOF2_GetHex(file[],key[],tag[]="");
native DOF2_GetBin(file[],key[],tag[]="");
native bool:DOF2_GetBool(file[],key[],tag[]="");
native DOF2_SetString(file[],key[],value[],tag[]="");
native DOF2_SetFloat(file[],key[],Float:value);
native DOF2_SetInt(file[],key[],value,tag[]="");
native DOF2_SetHex(file[],key[],value,tag[]="");
native DOF2_SetBin(file[],key[],value,tag[]="");
native DOF2_SetBool(file[],key[],bool:value,tag[]="");
native DOF2_IsSet(file[],key[],tag[]="");
native DOF2_Unset(file[],key[],tag[]="");
native DOF2_FileExists(file[]);
native DOF2_RemoveFile(file[]);
native DOF2_CreateFile(file[],password[]="");
native DOF2_RenameFile(oldfile[],newfile[]);
native DOF2_RenameKey(file[],oldkey[],newkey[],tag[]="");
native DOF2_CopyFile(filetocopy[],newfile[]);
native DOF2_CheckLogin(file[],password[]);
native DOF2_File(user[]);
native DOF2_ParseInt();
native DOF2_ParseFloat();
native DOF2_ParseBool();
native DOF2_ParseBin();
native DOF2_ParseHex();
native DOF2_SetUTF8(bool:set);
native bool:DOF2_GetUTF8();
native DOF2_GetFile();
native DOF2_MakeBackup(file[]);
native DOF2_RemoveSection (file [], tag []);
native DOF2_SectionExists (file [], tag []);
native DOF2_SortSection (file [], tag [], bool: ignorecase = true, bool: ascending = true);
native DOF2_SortAllSections (file [], bool: ignorecase = true, bool: ascending = true);
native DOF2_SetCaseSensitivity (bool: set);
native DOF2_GetCaseSensitivity ();
DOF2_SetBool(file, "Key", true);
new bool:var = DOF2_GetBool(file, "Key");
new conta[60], bool: Bool[MAX_PLAYERS];
format(conta, sizeof(conta), "Contas/%s.ini", nome(playerid));
DOF2_SetBool(conta, "Bool", Bool[playerid]);
Bool[playerid] = DOF2_GetBool(conta, "Bool");
Me corrijam se eu estiver errado.
PHP код:
|
new conta[60], bool: Bool[MAX_PLAYERS];
format(conta, sizeof(conta), "Contas/%s.ini", nome(playerid));
Funcionou da forma que o DelK falou, Obrigado!
Sу estб errado aqui:
PHP код:
Entгo ficaria "new conta[38]" Fora isso, funcionou perfeitamente, obrigado!!! |
assim cara vou dar um exemplo
PHP Code: "Olб %s seja bem vindo ao servidor" conte cada letra e espaзo que tem na frase deu 33 sу a frase agora some 33+25 33( da frase ao todo ) 25( Do limite do nome ) 33 + 25 58 no totsl deu 58 ai vocк cria a variavel e tal e na parte que vocк colocou 120 tu bota o 58 no caso o tanto de caracteres que tem na sua frase use esse site http://m.contarcaracteres.com Se vocк ficar usando variaveis globais que armazena um certo valor vai chegar uma hora que nгo vai aparecer certa mensagem. por isso vocк deve definir um tamanho em cada mensagem exemplo PHP Code: new kk[10] aqui a mensagem troque o 10 pelo numero de caracteres. isso й uma dica de otimizaзгo. |