[DEV] OX Quiz

Shall i finish this project?

  • Yes definitely

    Votes: 42 73.7%
  • Nah, it's not important

    Votes: 15 26.3%

  • Total voters
    57
Status
Not open for further replies.
Joined
Apr 7, 2008
Messages
570
Reaction score
31
since there is a wz section for the OX Quiz
i will be developing it

i figured that i can't change the npcs through wz so i deleted my previous thread.

progress so far:
Starting: 100%
Function: 100%
Timer: 70%
Total: 90%

i think i need help on this one
 
Last edited:
thats not what i meant
i previously made a thread about making all npcs gms-like
and let them say text read in the wz files
but the npc text isnt in the wz files, what means nexon uses (almost) the same way as us to create npcs
 
meh
i just saw that i have a development thread about OX quiz
just to let you know

i nearly finished it
kippieeej - [DEV] OX Quiz - RaGEZONE Forums

and
kippieeej - [DEV] OX Quiz - RaGEZONE Forums
 
i need help on 1 last thing though
i want to make a runnable of 20 seconds, and repeat it for lets say, x times
i know how to make the runnable, i just don't know how to put a limit to it
 
do this..
put a clock.
then put a code that will happen every 20sec when that code is putted up...
and if those 20 sec reaches 0 they will be warped out or i dunno...
And if u make it the times willl be aborted..

basically u use the timer metod and add a little clock to represent the timer..
so those 2 are executed respectivly.
 
i have 4 commands
!oxquestion - picks a question from the wz file
!oxanswer - views the answer to the question, 1 is true, 0 is false
!oxexplain - views the correct answer
!startox - will start a clock of 20 seconds, after the 20 seconds there will be checked if you are on the O or the X, if you are wrong you will die, else you will continue the game

But, i want this process to repeat every 20 seconds, until all questions are done (136 questions i believe)
 
PHP:
int correct;
int stage;
TimerManager.getInstance().schedule(new Runnable() {
			@Override
			public void run()  {
                 if (correct == stage) {
				end the ****. ?
                                 } else {
                     stage++;
                            }
			}
		}, 2000);
Correct would have to increase each time they get a question correct
 
Chill down AustraliaMS guy.

Oh and for bassoe, maybe try turn it into a loop.

PHP:
bool oxQuiz = true;
do {
FUNCTION
timer
} while (oxQuiz == true);
 
I am seriously mad at you man, you fcking said gd luck or some **** in all dev threads/help threads...and you are just trying to get your post count up!

goto fuckin hell yu moran you fkn complain every post i post at you the one trying to get ut post count up ur jst fkn spamming and u say at other posts i do when i say i good luck i eman it to support the person doing it u fkn fag

EDIT: whens this done ?
 
Last edited:
Status
Not open for further replies.
Back