pratti
Member level 3
- Joined
- Jun 15, 2013
- Messages
- 56
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 6
- Activity points
- 471
Code:
if(condition1)
{
if(condition2)
{
functioncall1();
}
elseif(condition2)
{
functioncall2();
}
else
{
functioncall3();
}
}
end
Last edited by a moderator: