i made a bot and i cant compile it. the error i get is Compile Error:
Ambiguous name detected : WritePrivateProfileString
anyone know hwo to fix that? :-/
try changing its name
Which program are you compiling it with, and in which language?
based on the error format, id guess vb
try checking your source to make sure you have the call done correctly, or if you have it more than once.
Public Declare Function WritePrivateProfileString Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long
that is what the call should look like in vb...