Posts: 31
Threads: 5
Joined: Mar 2011
Reputation:
0
Okay, I tryed adding my mapping to the bottom of the GameMode it was converted, but this is the error im getting can anyone help me?
C:\Users\VPS1220Admin\Desktop\PCRP\gamemodes\VRP.p wn(45271) : error 021: symbol already defined:"CreateObject"
Posts: 148
Threads: 5
Joined: Jun 2011
put all object under
Public OnGamemodeInit
objects wll only work under that header
Posts: 31
Threads: 5
Joined: Mar 2011
Reputation:
0
Sorry for so many questions, im new to this, ok so i found "public OnGameModeInit()", In-between the "()" do i put the object codes in there? or under "public OnGameModeInit()"
Posts: 148
Threads: 5
Joined: Jun 2011
you put the objects like this
public OnGamemodeInit();
{
//objects under here
}
do not remove the return 1 and return 1 should be bleow everything else
Posts: 31
Threads: 5
Joined: Mar 2011
Reputation:
0
Thanks, but its just Making the compiler to stop responding when i try compiling
Posts: 148
Threads: 5
Joined: Jun 2011
you are missing a bracket or you have to meny brackets or you have put the objects in a miaddle of a code please pistyour OnGamemodeInit();
here