Browsing all articles tagged with compile
Aug
1

Hammer editor, Cant compile. Error keeps poping up.?

Author Riddles    Category Photoshop CS     Tags , , , , , ,

When i try to compile my map it gets so far and it says The command failed. Windows reported the error:
“The system cannot find the file specified.”

the entire thingy is

** Executing…
** Command: “c:\program files\steam\steamapps\ryanbnm666\sourcesdk\bin\ep1\bin\vbsp.exe”
** Parameters: -game “c:\program files\steam\steamapps\ryanbnm666\counter-strike source\cstrike” “F:\cstrike\mapsrc\cs_glassmeass”

Valve Software – vbsp.exe (Dec 11 2006)
2 threads
materialPath: c:\program files\steam\steamapps\ryanbnm666\counter-strike source\cstrike\materials
Loading F:\cstrike\mapsrc\cs_glassmeass.vmf
fixing up env_cubemap materials on brush sides…
ProcessBlock_Thread: 0…1…2…3…4…5…6…7…8…9…10 (1)
**** leaked ****
Entity func_breakable (-936.00 56.00 -2392.00) leaked!
Processing areas…done (0)
Building Faces…done (0)
FixTjuncs…
PruneNodes…
WriteBSP…
done (4)
MAX_MAP_MODELS

** Executing…
** Command: “c:\program files\steam\steamapps\ryanbnm666\sourcesdk\bin\ep1\bin\vvis.exe”
** Parameters: -game “c:\program files\steam\steamapps\ryanbnm666\counter-strike source\cstrike” “F:\cstrike\mapsrc\cs_glassmeass”

Valve Software – vvis.exe (Nov 8 2007)
2 threads
reading f:\cstrike\mapsrc\cs_glassmeass.bsp
Error opening f:\cstrike\mapsrc\cs_glassmeass.bsp

** Executing…
** Command: “c:\program files\steam\steamapps\ryanbnm666\sourcesdk\bin\ep1\bin\vrad.exe”
** Parameters: -game “c:\program files\steam\steamapps\ryanbnm666\counter-strike source\cstrike” “F:\cstrike\mapsrc\cs_glassmeass”

Valve Software – vrad.exe SSE (Nov 8 2007)
—– Radiosity Simulator —-
2 threads
[Reading texlights from 'lights.rad']
[1 texlights parsed from 'lights.rad']

Loading f:\cstrike\mapsrc\cs_glassmeass.bsp
Error opening f:\cstrike\mapsrc\cs_glassmeass.bsp

** Executing…
** Command: Copy File
** Parameters: “F:\cstrike\mapsrc\cs_glassmeass.bsp” “c:\program files\steam\steamapps\ryanbnm666\counter-strike source\cstrike\maps\cs_glassmeass.bsp”

The command failed. Windows reported the error:
“The system cannot find the file specified.”

What do i do to get my map to compile so i can play it.

Jul
29

whats wrong with the following code when i compile it in visual c++ it gives me the following error?

error LNK2001: unresolved external symbol _main

the programme:
#define WIN32_LEAN_AND_MEAN
#include
LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wparam,LPARAM lparam);
int WINAPI WinMain(HINSTANCE hinstance,HINSTANCE hprevinstance,LPSTR lpCmdLine,int nShowCmd)
{
WNDCLASSEX wc;
HWND hwnd;
MSG msg;
////////Window Class Structure
wc.cbSize=sizeof(WNDCLASSEX);
wc.style=CS_HREDRAW | CS_VREDRAW;
wc.cbClsExtra=0;
wc.cbWndExtra=0;
wc.hInstance=hinstance;
wc.hIcon=LoadIcon(NULL,IDI_APPLICATION);
wc.hCursor=LoadCursor(NULL,IDC_ARROW);
wc.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);
wc.lpszMenuName=NULL;
wc.lpszClassName=”sono”;
wc.hIconSm=LoadIcon(NULL,IDI_WINLOGO);
wc.lpfnWndProc=WndProc;
/////////////////////
//register the class
if(!RegisterClassEx(&wc))
{
return 0;
}
hwnd=CreateWindow(“sono”,”My APP”, WS_OVERLAPPED | WS_POPUP ,100,100,250,250,NULL,NULL,hinstance,NULL);
/////////////
if(hwnd==NULL)
{
re