Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public Action:Test2(client, args)
  2. {
  3. BuildPath(Path_SM, KvPath, sizeof(KvPath), "configs/tf2_saysounds.cfg");
  4. new Handle:DB = CreateKeyValues("Phrase");
  5. FileToKeyValues(DB, KvPath);
  6.  
  7. char name2[64]
  8. if(KvGotoFirstSubKey(DB))
  9. {
  10. KvGetString(DB, "name", name2, 64);
  11. PrintToChatAll(name2);
  12. KvSetString(DB, "name", "abcde");
  13. }
  14. KvRewind(DB);
  15. KeyValuesToFile(DB, KvPath);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement